.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background-color: #f1f0f5;
}

.modal-content {
    background: #fff8f2;
    border-radius: 12px;
    width: 550px;
    max-width: 90%;
    overflow: hidden;
    border: none !important;
}

.modal-header {
    background: #062f47;
    padding: 20px;
}

.modal-header h2 {
    color: white;
    text-align: center;
    margin: 0;
    width: 100%;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.modal-body {
    padding: 40px 30px;
    text-align: center;
}

.welcome-title {
    font-size: 28px;
    font-weight: bold;
    color: #333333;
    margin: 0 0 10px 0;
    font-family: 'Arial', sans-serif;
}

.welcome-subtitle {
    font-size: 16px;
    color: #666666;
    margin: 0 0 30px 0;
    font-family: 'Arial', sans-serif;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid white;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: border-color 0.3s ease;
    height: 47px;
}

.form-input:focus {
    outline: none;
    border-color: #F57E1F;
}

.form-input::placeholder {
    color: #AAAAAA;
    font-family: 'Arial', sans-serif;
}

.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.password-toggle i {
    font-family: "Font Awesome 5 Free", "FontAwesome", Arial, sans-serif !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block !important;
    font-size: 18px !important;
}

.password-toggle .fas.fa-eye::before,
.password-toggle i.fas.fa-eye::before {
    content: "\f06e" !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
}

.password-toggle .fas.fa-eye-slash::before,
.password-toggle i.fas.fa-eye-slash::before {
    content: "\f070" !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
}

.password-toggle .fa-eye::before,
.password-toggle i.fa-eye::before {
    content: "\f06e" !important;
    font-family: "FontAwesome" !important;
    font-weight: normal !important;
    display: inline-block !important;
}

.password-toggle .fa-eye-slash::before,
.password-toggle i.fa-eye-slash::before {
    content: "\f070" !important;
    font-family: "FontAwesome" !important;
    font-weight: normal !important;
    display: inline-block !important;
}

.login-btn {
    width: 100%;
    padding: auto 15px;
    background: #F57E1F;
    border: none;
    border-radius: 118px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    height: 48px;
}

.error-message {
    color: #FF4444;
    font-size: 14px;
    margin-top: 5px;
    text-align: left;
}

.forgot-link
{
    text-align: right;
    margin-bottom: 15px;
}

.back-link {
    text-align: center;
    margin-top: 15px;
}

.forgot-link a,
.back-link a {
    color: #062f47;
    text-decoration: none;
    font-size: 14px;
}

.forgot-link a:hover,
.back-link a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .welcome-title {
        font-size: 24px;
    }
}