

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; 
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(to bottom right, #f4e9e9, #f5cece);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid black;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    gap: 20px; 
}

form label {
    color: #000000;
    font-weight: bold;
    font-size: 18px;
    align-self: flex-start; 
}

form input, form textarea {
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-color: #fff;
    color: #343a40;
    font-size: 18px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    width: 100%; 
}

form input:focus, form textarea:focus {
    border: none;
    outline: none;
    box-shadow: 0 0 10px rgba(106, 130, 251, 0.5);
}

form button {
    background-color: #343a40;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    align-self: flex-start; 
}

form button:hover {
    background-color: #fff;
    color: #343a40;
    transform: scale(1.05);
}

#form-status {
    margin-top: 30px;
    font-weight: bold;
    color: #fff;
    font-size: 18px;
    text-align: center;
}


@media (max-width: 768px) {
    form {
        padding: 20px; 
    }

    form button {
        align-self: center; 
    }
}

