body {
    background-color: #1A1A1A;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.reset-container {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.reset-container h1 {
    margin-bottom: 30px;
    font-size: 2.5em;
    background: linear-gradient(45deg, #ff0000, #ff4d4d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#resetForm {
    background: linear-gradient(145deg, #424242, #313131);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: #ffffff;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1em;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.5);
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #ff0000, #ff4d4d);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.form-links {
    margin-top: 20px;
}

.form-links a {
    color: #ff4d4d;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.form-links a:hover {
    color: #ff8080;
}

#statusMessage {
    color: #ff4d4d;
    margin-top: 15px;
    font-size: 0.9em;
}

@media (max-width: 480px) {
    .reset-container {
        padding: 0 15px;
    }
    
    #resetForm {
        padding: 20px;
    }
}
