.auth-box {
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.login-section,
.register-section {
    flex: 1;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;

}

.login-section {
    margin: 10px;
}

.register-section {
    margin: 10px;
}

.title h2 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #3b5998;
    text-align: center;
}

.title p {
    color: #6c757d;
    margin-bottom: 20px;
}

.input-text {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    width: 100%;
    margin-bottom: 15px;
}

.input-text:focus {
    border-color: #3b5998;
    box-shadow: 0 0 5px rgba(59, 89, 152, 0.3);
}

button {
    background-color: #e83e8c;
    /* Pink button */
    border: none;
    color: white;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

button:hover {
    background-color: #d63384;
}

.form-check-label {
    color: #3b5998;
}

.text-center a {
    color: #3b5998;
    font-weight: 500;
    text-decoration: none;
}

.text-center a:hover {
    text-decoration: underline;
}

/* Divider Line */
.divider {
    height: 1px;
    background: #ddd;
    margin: 20px 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .auth-box {
        flex-direction: column;
        padding: 20px;
    }

    .login-section,
    .register-section {
        margin: 0px 0;
    }
}



ul.text-danger {
    color: red;
    list-style: none;
    padding-left: 0;
}
