/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Form Styles */
form {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    width: 300px;
    text-align: center;
}

/* Input Field Styles */
input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #333;
    color: #e0e0e0;
    font-size: 16px;
}

/* Button Styles */
button {
    width: 100%;
    padding: 12px;
    background-color: #6200ea;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #3700b3;
}

/* Placeholder Text Styles */
input::placeholder {
    color: #b0b0b0;
}

/* Link Styles */
a {
    color: #6200ea;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Message Styles */
p {
    color: #bbb;
    font-size: 14px;
    margin-top: 10px;
}

