/**
 * Media Email Gate - Frontend Styles
 * Save as: /css/media-email-gate.css in your theme directory
 */

.media-email-gate {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
    text-align: center;
}

.media-email-gate-icon {
    color: #0073aa;
    margin-bottom: 1rem;
}

.media-email-gate-icon svg {
    display: inline-block;
}

.media-email-gate-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: #333;
}

.media-email-gate-description {
    margin: 0 0 1.5rem 0;
    color: #666;
    font-size: 0.95rem;
}

.media-email-gate-form {
    text-align: left;
}

.media-email-gate-form .form-group {
    margin-bottom: 1rem;
}

.gate-method-title {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: #0073aa;
    font-weight: 600;
}

.gate-separator {
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.gate-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.gate-separator span {
    position: relative;
    background: #f9f9f9;
    padding: 0 1rem;
    color: #999;
    font-weight: 600;
    font-size: 0.9rem;
}

.media-email-gate-form label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.media-email-gate-form input[type="text"],
.media-email-gate-form input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.media-email-gate-form input[type="text"]:focus,
.media-email-gate-form input[type="email"]:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

.media-email-gate-submit {
    width: 100%;
    padding: 0.875rem;
    margin-top: 0.5rem;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.media-email-gate-submit:hover {
    background: #005a87;
}

.media-email-gate-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.media-email-gate-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
}

.media-email-gate-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.media-email-gate-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive design */
@media (max-width: 600px) {
    .media-email-gate {
        margin: 1rem;
        padding: 1.5rem;
    }
}
