
/*---------------------------------------
     SIGN IN (LOGIN) PAGE STYLES
-----------------------------------------*/
.login-welcome-box {
    padding: 40px 0;
}

.login-welcome-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.login-features {
    margin-top: 30px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.feat-item i {
    color: #147bd7;
    font-size: 18px;
}

/* The Login Card Styling */
.login-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-top: 5px solid #147bd7;
}

.login-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-card-header i {
    font-size: 40px;
    color: #147bd7;
    margin-bottom: 10px;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.remember-me {
    color: #888;
    cursor: pointer;
}

.forgot-pass {
    color: #147bd7;
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
}


/*---------------------------------------
     THEME CONSISTENT BUTTONS
-----------------------------------------*/
.section-btn.btn-primary {
    background: #147bd7; /* Your signature blue */
    border: 2px solid #147bd7;
    color: #ffffff;
    padding: 15px 40px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 50px; /* Pill shape */
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none !important;
    outline: none;
}

.section-btn.btn-primary:hover {
    background: transparent;
    color: #147bd7;
    transform: translateY(-3px); /* Lifts the button slightly */
    box-shadow: 0 10px 20px rgba(20, 123, 215, 0.2);
}

.section-btn.btn-primary:active {
    transform: translateY(-1px);
}

/* Specific fix for the Login Page full-width button */
.btn-block {
    display: block;
    width: 100%;
}

.section-btn i {
    margin-left: 8px;
    transition: 0.3s;
}

.section-btn:hover i {
    transform: translateX(5px); /* Arrow moves right on hover */
}