/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #282828; /* Gruvbox background */
    color: #ebdbb2; /* Gruvbox foreground (text) */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

main {
    background-color: #3c3836; /* Gruvbox dark background */
    padding: 2rem;
    border: 2px solid #665c54; /* Gruvbox dark border */
    border-radius: 0; /* Sharp corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ebdbb2; /* Gruvbox foreground */
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 5px #fabd2f, /* Gruvbox yellow glow */
        0 0 10px #fabd2f, 
        0 0 20px #fabd2f, 
        0 0 40px #689d6a; /* Gruvbox green glow */
}

form div {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ebdbb2; /* Gruvbox foreground (text) */
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #665c54; /* Gruvbox dark border */
    border-radius: 0; /* Sharp corners */
    font-size: 1rem;
    background-color: #504945; /* Gruvbox input background */
    color: #ebdbb2; /* Gruvbox foreground (text) */
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #fabd2f; /* Gruvbox yellow (focus border) */
    outline: none;
}

button[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    background-color: #689d6a; /* Gruvbox green (button background) */
    color: #ebdbb2; /* Gruvbox foreground (text) */
    border: none;
    border-radius: 0; /* Sharp corners */
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #8ec07c; /* Gruvbox light green (button hover) */
}

footer {
    margin-top: 1.5rem;
    text-align: center;
    color: #ebdbb2; /* Gruvbox foreground (text) */
}

footer a {
    color: #689d6a; /* Gruvbox green (link color) */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #8ec07c; /* Gruvbox light green (link hover) */
}

/* Text Styling */
.neon_glow {
    font-size: 2rem; /* Larger font size */
    color: #ebdbb2; /* Gruvbox foreground (text) */
    text-shadow: 
        0 0 5px #fabd2f, /* Gruvbox yellow glow */
        0 0 10px #fabd2f, 
        0 0 20px #fabd2f, 
        0 0 40px #689d6a; /* Gruvbox green glow */
}
