
.container{
    /* justify-content: space-between; */
    gap: 100px;
    align-items: center;
    
}
.card{
    background-color: #272727;
    border: #272727;
}



.form-container {
    background-color:#272727;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    /* display: flex; */
    /* margin: auto; */

}

h1 {
    text-align: center;
    color: white;
}

label {
    margin-bottom: 5px;
    display: block;
    color: white;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    /* color: white; */
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus {
    border-color:#e5533d ;
    outline: none;
}

button {
    width: 100%;
    padding: 10px;
    background-color:#e5533d;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}


/* responsive  */
@media only screen and (max-width: 768px){
    .container{
        gap: 20px;
        align-items: center;
    }
}