/* Premium Auth Styles */
:root {
    --premium-blue: #0077b5;
    --premium-text: #444444;
    --premium-muted: #666666;
    --premium-bg-input: #f8fbff;
    --placeholder-color: #999999;
}

.ead-auth-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    color: var(--premium-text);
}

.ead-auth-header-premium {
    text-align: center;
    margin-bottom: 25px;
}

.ead-auth-title {
    color: var(--premium-blue);
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 5px 0;
}

.ead-auth-subtitle {
    color: var(--premium-muted);
    font-size: 14px;
    margin: 0;
}

.premium-field {
    margin-bottom: 20px;
}

.ead-auth-row {
    display: flex;
    gap: 15px;
}

.ead-auth-row .premium-field {
    flex: 1;
}

@media (max-width: 480px) {
    .ead-auth-row {
        flex-direction: column;
        gap: 0;
    }
}

.premium-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--premium-blue);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.ead-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.ead-input-wrapper .material-symbols-outlined {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #00bcd4;
    font-size: 20px;
    pointer-events: none;
    z-index: 2;
}

.ead-input-wrapper input,
.ead-input-wrapper select {
    width: 100% !important;
    padding: 15px 15px 15px 48px !important;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    font-size: 14px;
    color: var(--premium-text);
    background-color: var(--premium-bg-input);
    transition: all 0.3s ease;
    box-sizing: border-box !important;
    appearance: none;
}

.ead-input-wrapper input::placeholder {
    color: var(--placeholder-color);
    opacity: 1;
}

.ead-input-wrapper .ead-whatsapp-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: #00bcd4;
    z-index: 2;
    pointer-events: none;
}

.ead-input-wrapper select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230077b5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.ead-input-wrapper input:focus {
    border-color: #0077b5;
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0,119,181,0.1);
}

.ead-auth-lgpd {
    margin: 15px 0 25px 0;
}

.ead-checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 13px;
    color: var(--premium-text);
    gap: 10px;
}

.ead-lgpd-text a {
    color: var(--premium-blue);
    font-weight: 700;
    text-decoration: none;
}

.premium-submit {
    width: 100%;
    padding: 18px 20px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #007bff 0%, #00d4ff 100%);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    text-align: center;
    line-height: normal;
}

.premium-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

.ead-auth-footer-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--premium-muted);
}

.ead-auth-footer-link a, .ead-auth-footer-link .ead-auth-tab-btn {
    color: var(--premium-muted);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-size: inherit;
    display: inline;
}

.ead-auth-footer-link a:hover, .ead-auth-footer-link .ead-auth-tab-btn:hover {
    text-decoration: underline;
}

.ead-auth-branding-footer {
    border-top: 1px solid #f0f0f0;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 12px;
    color: #999;
}

/* Tab Overrides - allowing user to customize via CSS */
.ead-auth-tabs-nav {
    border-bottom: none !important;
}

.ead-auth-tab-btn {
    transition: all 0.3s ease;
    font-size: 14px;
}

.ead-auth-tab-btn.active {
    color: #0077b5;
    border-bottom: 2px solid #0077b5;
}
