@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background: #141414 !important;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    color: #fff;
}

.container {
    position: relative;
    width: 100%;
    max-width: 450px;
    padding: 30px;
    background: transparent;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    margin: 20px;
}

.login-box {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid #e50914;
}

.login-box h2 {
    color: #FFD700;
    margin-bottom: 30px;
    font-size: 28px;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
}

.input-group input {
    width: 100%;
    padding: 15px;
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff !important;
    font-size: 16px;
    text-align: left;
    box-sizing: border-box;
}

.input-group input:focus {
    outline: none;
    border-color: #FFD700;
}

.input-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
    transition: 0.3s;
}

.input-group input:focus + label,
.input-group input:valid + label {
    top: -10px;
    transform: translateY(0);
    left: 8px;
    font-size: 12px;
    color: #FFD700;
    background: #1a1a1a;
    padding: 0 5px;
}

form button {
    width: 100%;
    padding: 15px;
    background: #28a745;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: #218838;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 14px;
}

.options a {
    color: #FFD700;
    text-decoration: none;
}

.options a:hover {
    text-decoration: underline;
}

.signup-text {
    margin-top: 20px;
    color: #aaa;
}

.signup-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.signup-text a:hover {
    text-decoration: underline;
}

.info-text {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
}

@media (max-width: 768px) {
    .login-box { padding: 25px; }
    .login-box h2 { font-size: 22px; }
    .options { flex-direction: column; gap: 10px; }
}
