.form-container {
    background-color: rgba(143, 143, 143, 0.6);
    border-radius: 10px;
    padding: 20px 30px;
    width: 600px;
    text-align: center;
    color: white;
}
.form-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.form-container p {
    font-size: 14px;
    margin-bottom: 20px;
}
form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.form-left,
.form-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 48%;
}
input[type="text"],
input[type="email"],
textarea {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    background-color: #eee;
    color: #333;
}
textarea {
    resize: none;
    height: 100%;
}
.form-feedback-textarea {
    height: 75%;
}
.checkbox-row,
.urgent-checkbox {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: white;
    width: 100%;
}
.checkbox-row label,
.urgent-checkbox label {
    display: flex;
    align-items: center;
    gap: 5px;
}
.checkbox-row label {
    align-items: flex-start;
}
.directtion-items {
    flex-direction: column;
}
.checkbox-row span {
    display: block;
    margin-bottom: 2px;
}
.checkbox-row a {
    display: block;
    color: #ddd;
    text-decoration: underline;
}
.custom-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background-color: #ddd;
    border: 2px solid #333;
    border-radius: 4px;
    cursor: pointer;
}
.custom-checkbox:checked {
    background-color: red;
    position: relative;
}
.custom-checkbox:checked::before {
    content: "✔";
    position: absolute;
    font-size: 20px;
    color: white;
    left: 2px;
    top: -2px;
}
