﻿
/* Auth Card */
.auth-card {
    background: white !important;
    border-radius: 25px !important;
    padding: 40px 30px !important;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}


/* Auth Title */
.auth-title {
    text-align: center !important;
    color: #666 !important;
    margin-bottom: 30px !important;
    font-weight: 500 !important;
}

/* Form Fields */
.form-field {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-field-half {
    flex: 1;
}

/* Custom TextField Styling */
.custom-textfield .mud-input-filled {
    background-color: #f0f0f5 !important;
    border-radius: 15px !important;
    border: none !important;
}

    .custom-textfield .mud-input-filled:before,
    .custom-textfield .mud-input-filled:after {
        border-bottom: none !important;
    }

    .custom-textfield .mud-input-filled.mud-input-filled-margin-dense {
        margin-top: 0 !important;
    }

.custom-textfield .mud-input-label {
    color: #666 !important;
    font-weight: 500 !important;
}

    .custom-textfield .mud-input-label.mud-input-label-filled {
        transform: translate(12px, 12px) scale(1) !important;
    }

        .custom-textfield .mud-input-label.mud-input-label-filled.mud-input-label-shrink {
            transform: translate(12px, -9px) scale(0.75) !important;
        }

.custom-textfield .mud-input-adornment-start,
.custom-textfield .mud-input-adornment-end {
    color: #00678F !important;
}

.custom-textfield .mud-input-adornment-end {
    cursor: pointer;
}

/* Auth Links */
.auth-links {
    display: flex;
    justify-content: center;
    margin: 20px 0 30px 0;
}

.auth-link {
    color: #00678F !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

    .auth-link:hover {
        text-decoration: underline !important;
    }

/* Auth Button */
.auth-button {
    border-radius: 25px !important;
    background: #00678F !important;
    height: 50px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-transform: none !important;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 103, 143, 0.3) !important;
}

    .auth-button:hover:not(:disabled) {
        background: #004d6b !important;
        box-shadow: 0 6px 20px rgba(0, 103, 143, 0.4) !important;
    }

    .auth-button:disabled {
        background: #cccccc !important;
        box-shadow: none !important;
        cursor: not-allowed;
    }

/* Text Utilities */
.text-muted {
    color: #666 !important;
}

/* Responsive Design */
@media (max-width: 480px) {
    .auth-container {
        padding: 15px;
    }

    .auth-card {
        padding: 30px 25px !important;
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-field-half {
        margin-bottom: 20px;
    }
}

/* Success/Error Icons */
.text-success {
    color: #02B64D !important;
}

.text-error {
    color: #E00031 !important;
}

.text-info {
    color: #00678F !important;
}
