.container {
    padding: 120px 2rem 60px;
    max-width: 600px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

input,
textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

input:focus,
textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.form-actions {
    margin-top: 1rem;
}

button[type="submit"] {
    width: 100%;
    background-color: #fff;
    color: #000;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button[type="submit"]:hover {
    background-color: #eee;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

button[type="submit"]:active {
    transform: translateY(0);
}

/* Error states (if any) */
.errorlist {
    color: #ff4d4d;
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    form {
        padding: 1.5rem;
    }
}
