* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }

body {
    background-color: #0d0d0d;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    background-color: #111111;
    border: 1px solid #1f1f1f;
    border-radius: 16px;
    padding: 40px;
    width: 350px;
}

.login-box h1 {
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
}

.login-box input::placeholder { color: #888888; }
.login-box input:focus { outline: none; border-color: #2f8fe0; }

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #cccccc;
    font-size: 13px;
    margin-bottom: 20px;
}

.form-options a { color: #cccccc; text-decoration: none; }
.form-options a:hover { color: #2f8fe0; }

.login-box button {
    width: 100%;
    padding: 14px;
    background-color: #2f8fe0;
    color: #ffffff;
    font-weight: bold;
    font-size: 15px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.login-box button:hover { background-color: #1e73c2; }

.register-text {
    text-align: center;
    color: #cccccc;
    font-size: 13px;
    margin-top: 16px;
}

.register-text a { color: #2f8fe0; font-weight: bold; text-decoration: none; }