.container {
    margin: 100px 10%;
}

.form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
}

form {
    margin-top: 50px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group input:required,
.form-group select:required,
.form-group textarea:required {
    border-color: #CC8B65;
}

.form-group textarea {
    height: 150px;
}

.form-group-half {
    width: 48%;
    display: flex;
    flex-direction: column;
}

.form-group-full {
    width: 100%;
}

button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #CC8B65;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #b37456;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        margin: 50px 5%;
    }

    .form-group {
        flex-direction: column;
    }

    .form-group-half {
        width: 100%;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 95%;
    }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        margin: 75px 7.5%;
    }

    .form-group {
        flex-direction: column;
    }

    .form-group-half {
        width: 100%;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 97.5%;
    }
}