@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');

body {
    font-family: 'Patrick Hand', cursive;
    background-color: #1f4c3a;
    color: white;
    margin: 0;
    padding: 0;
    background-image: radial-gradient(#1f4c3a 60%, #183c2d 100%);
    background-attachment: fixed;
    background-size: cover;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 3px dashed white;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

h2, h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    text-shadow: 1px 1px 2px black;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 12px;
    font-size: 1.2em;
}

input, select, button {
    padding: 12px;
    margin-top: 6px;
    border: 2px dashed #fff;
    border-radius: 5px;
    font-size: 1em;
    background-color: transparent;
    color: white;
}

input::placeholder {
    color: #ccc;
    font-style: italic;
}

button {
    background-color: rgba(255, 255, 255, 0.15);
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

a {
    color: #cceeff;
    text-decoration: underline;
}

a:hover {
    color: #ffffff;
}

.error {
    color: #ffdddd;
    background-color: rgba(255, 0, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
}
