

/*---------------------------------------
     SIGN IN / SIGN UP ENHANCEMENTS
-----------------------------------------*/
.signin-info h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.signin-steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.signin-steps li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.signin-steps li i {
    background: #29ca8e;
    color: #ffffff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
}

.signin-steps h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
}

.signin-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.signin-card h3 {
    font-size: 20px;
    margin-top: 0;
}

.signin-card .form-control {
    border: 1px solid #ececec;
    background: #fdfdfd;
    height: 45px;
    margin-bottom: 5px;
}

.signin-card label {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.checkbox-inline {
    font-size: 12px !important;
    color: #888 !important;
    margin-top: 15px;
}

.mt-20 { margin-top: 20px; }


/* Ensure the button wrapper doesn't have extra padding that ruins the alignment */
.button-wrapper.mt-20 {
    margin-top: 25px;
}

/* Icon animation for the Sign Up button */
.section-btn .fa-paper-plane {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.section-btn:hover .fa-paper-plane {
    transform: rotate(15deg) translateY(-3px) translateX(3px);
    color: #ffffff;
}
/*---------------------------------------
     THEMED SIGN-IN/SIGN-UP ICONS
-----------------------------------------*/
.signin-steps li i {
    background: #147bd7; /* Branding Blue */
    color: #ffffff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
    transition: 0.3s;
}

.signin-steps li:hover i {
    transform: scale(1.1);
    background: #252525; /* Turns dark on hover for contrast */
}

/* Form focus border color */
.signin-card .form-control:focus {
    border-color: #147bd7;
    box-shadow: none;
    background: #ffffff;
}

/* Link color for 'Login here' */
.signin-card a {
    color: #147bd7;
    font-weight: bold;
}

.signin-card a:hover {
    color: #252525;
    text-decoration: underline !important;
}

/* Checkbox Color Fix */
.checkbox-inline input[type="checkbox"]:checked {
    accent-color: #147bd7;
}

