/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(120deg, #ff6f91, #ff9a44);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

h1 {
    font-size: 2rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(#ffffff, #ffddc1);
    --webkit-background-clip: text;
    --webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Container */
.container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    padding: 30px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: fadeIn 0.5s ease-in-out;
    overflow: hidden;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 0.9rem;
    color: #555555;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
button {
    font-size: 1rem;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

/* Textareas */
textarea {
    resize: vertical;
    min-height: 80px;
}

/* Input Fields Focus Effect */
input:focus,
textarea:focus {
    border-color: #ff6f91;
    box-shadow: 0 0 8px rgba(255, 111, 145, 0.6);
    outline: none;
}

/* Button */
button {
    background: linear-gradient(120deg, #ff6f91, #ff9a44);
    color: #ffffff;
    border: none;
    cursor: pointer;
    padding: 12px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

button:hover {
    transform: translateY(-3px);
    background: linear-gradient(120deg, #ff9a44, #ff6f91);
}

/* Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .container {
        padding: 20px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    button {
        font-size: 0.9rem;
        padding: 8px;
    }
}
