
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Open+Sans&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    background: url('bg.jpg') center top no-repeat;
    background-size: cover;
    padding: 0;
    margin: 0;
    color: #5c4a3d;
}

.container {
    max-width: 680px;
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.92);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 10px #ccc;
}

h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.4em;
    color: #d67a6c;
    margin-top: 0;
}

p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

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

label {
    margin-top: 12px;
    font-weight: bold;
}

input, select, textarea {
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #d6c7b9;
    border-radius: 5px;
    font-size: 1em;
}

button {
    margin-top: 20px;
    padding: 12px;
    background: #e8b3a3;
    border: none;
    color: white;
    font-size: 1.1em;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #d67a6c;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeInUp 1.2s ease;
}

input, select, textarea, button {
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #c28e7b;
    box-shadow: 0 0 5px rgba(210, 140, 100, 0.3);
}

button:hover {
    transform: scale(1.03);
}
