/* General dark background and red accent theme */
body {
    background-color: #121212;
    color: #ff8a80; /* light red */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Headings */
h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Form container */
form {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 138, 128, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

/* Input fields */
input[type="text"] {
    padding: 0.75rem;
    border: 1px solid #ff8a80;
    border-radius: 5px;
    background-color: #2c2c2c;
    color: #ffffff;
    font-size: 1rem;
}

/* Submit button */
input[type="submit"] {
    padding: 0.75rem;
    background-color: #ff8a80;
    color: #121212;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
}

input[type="submit"]:hover {
    background-color: #ff5252;
}

/* Paragraphs (messages and links) */
p {
    margin-top: 1rem;
    font-size: 1rem;
    text-align: center;
}

/* Anchor tag (shortened link) */
a {
    color: #ff8a80;
    text-decoration: underline;
}

a:hover {
    color: #ff5252;
}
