.form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input {
    width: 9.375rem;
    height: 2.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.form-group textarea {
    width: 18.75rem;
    height: 83.33333333333333rem;
}

@media all and (min-width: 1200px) {
    .form-group input {
        width: 12.5rem;
    }

    .form-group textarea {
        width: 25rem;
    }
}