body {
    background: #fafbfc;
    font-family: "Poppins", sans-serif;
}

.login-box {
    width: 380px;
}

.input-box {
    background: #f2f5f9;
}

.login-btn {
    background: #d5262a;
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
}

.login-btn:hover {
    background: #6db770;
}

.forgot {
    color: #d5262a;
    text-decoration: none;
}


.social-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.google { background: #db4437; }


.final-login {
    border-bottom: 2px solid #ddd;
    padding-left: 0;
}

.final-login li {
    list-style: none;
    display: inline-block;
    margin-right: 25px;
}

.final-login li a {
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 8px;
    display: inline-block;
    color: #666;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

.final-login li.active a,
.final-login li a:hover {
    color: #007bff;              /* Active blue color */
    border-bottom: 2px solid #007bff;
    font-weight: 600;
}
