body {
    background-color: #101010;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.logo {
    width: 315px;
    margin-bottom: 40px;
}

.login-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.login-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #ccc;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #333;
    background-color: #222;
    color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
}

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

.login-form .password-options a {
    color: #007bff;
    text-decoration: none;
}

.login-form .checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
}

.login-form .checkbox-group input {
    margin-right: 10px;
}

.login-form .btn-continue {
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-form .btn-continue:hover {
    background-color: #0056b3;
}

.footer-text {
    margin-top: 30px;
    font-size: 12px;
    color: #888;
}

.footer-text p {
    margin: 5px 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .login-container {
        padding: 15px;
    }

    .logo {
        width: 150px;
        margin-bottom: 30px;
    }
}
