body {
    background-color: #3d3d3d;
    color: white;
    font-family: Arial, sans-serif;
}

form {
    margin: 5px 0 5px 10px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="confirm_password"] {
    padding: 10px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 999px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder {
    color: #bbb;
}

button[type="submit"] {
    padding: 10px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 999px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #444;
}
