/* Professional background color */
body.login-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e1e8f0 100%);
}

/* Set a wider width for the login box */
.login-box {
    width: 100%;
    max-width: 460px;
}

.card-sm {
    max-width: 400px;
    margin: 0 auto;
}


/* Card and Box Styles */
.login-box .card {
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    border: none;
    overflow: hidden;
}
/* .card{
    border: 3px solid transparent !important;
    border-radius: 25px !important;
    background: linear-gradient(#FFD700, #FFA500) border-box !important;
    background-clip: border-box !important;
} */

.login-card-body {
    padding: 2.5rem;
}

/* Perfect Label styling */
.form-group label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

/* Input Group styling */
.login-box .input-group .form-control {
    border-radius: 15px;
    border-right: 0;
    padding: 0.75rem 1.2rem;
    height: auto;
}

.login-box .input-group .form-control {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.login-box .input-group .input-group-append .input-group-text {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
    background-color: #fff;
}


.login-box .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    border-color: #ffc107;
}

[class*=icheck-]>input:first-child+input[type=hidden]+label::before,
[class*=icheck-]>input:first-child+label::before {
    border-radius: 6px !important;
}

/* Sign In Button styling */
.btn-sign-in {
    border-radius: 15px;
    padding: 12px 0;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.icheck-warning>label {
    font-weight: 500 !important;
}

/* New rule for rounded checkbox */
.icheck-warning>label::before {
    border-radius: 50%;
}

/* Center 'Remember Me' container */
.remember-me-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Forgot Password Button Style */
.forgot-password-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    margin-top: 1rem;
    background-color: #e9ecef;
    color: #495057;
    border-radius: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.forgot-password-btn:hover {
    color: #5451ee;
    /* Use your primary brand color, or a slightly darker version for better contrast */
    background-color: #f8f9fa;
    /* Keep the background color the same */
    text-decoration: none;
}
