body {
    background-image: url('/static/background.png');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #333;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: -1;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
}

h1 {
    font-family: 'Playfair Display', serif;
}

textarea, input {
    border: 2px solid #ddd;
    border-radius: 10px;
}

button {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}
