.aroma-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5ebe6;
    padding: 50px;
    border-radius: 10px;
}

.aroma-left {
    background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d');
    width: 50%;
    height: 400px;
    background-size: cover;
    border-radius: 10px 0 0 10px;
}

.aroma-form-box {
    background: #ffffff;
    padding: 30px;
    width: 50%;
    border-radius: 0 10px 10px 0;
}

.aroma-form-box h3 {
    margin-bottom: 20px;
    color: #6d4c41;
}

.aroma-form-box input,
.aroma-form-box textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    background: #f1e5df;
    border-radius: 5px;
}

.aroma-form-box button {
    background: #8d6e63;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

.success {
    color: green;
    margin-top: 10px;
}
