body {
    background-color: #121212;
    color: white;
    font-family: Arial, sans-serif;
}


.login-container, .register-container {
    margin-top: 50px;
    background-color: #1d1d1d;
    padding: 30px;
    border-radius: 8px;
}


.form-control {
    background-color: #333;
    color: white;
    border: 1px solid #444;
}


.btn-primary {
    background-color: #6a1b9a;
    border-color: #6a1b9a;
}

.btn-primary:hover {
    background-color: #9c27b0;
    border-color: #9c27b0;
}


.social-login, .social-register {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-login i, .social-register i {
    font-size: 24px;
    cursor: pointer;
}


a {
    color: #9c27b0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


.text-center p {
    color: white;
}


h2 {
    text-align: center;
    margin-bottom: 20px;
}

.text-center {
    color: white;
}


form {
    margin-bottom: 20px;
}

form .mb-3 {
    margin-bottom: 20px;
}


@media (max-width: 768px) {
    .login-container, .register-container {
        width: 90%;
        margin: 20px auto;
    }
}
