﻿.feedback-section {
    max-width: var(--max-width);
    margin: 24px auto;
    padding: 0 20px;
    margin-bottom: 100px;
}


.container {
    background: #fff;
    border-radius: 12px;
    padding: 23px;
    box-shadow: 0 4px 14px var(--shadow-warm);
    border: 1px solid rgba(0,0,0,0.03);
}

h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--warm);
    margin-bottom: 20px;
    line-height: 28px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    color: #444;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;   
    transition: border-color 0.3s;
}

    input[type="text"]:focus,
    input[type="email"]:focus,
    textarea:focus {
        border-color: var(--accent);
        outline: none;
    }

textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: var(--accent);
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-submit:hover {
        background-color: rgb(188 90 7);
    }

.recaptcha-container {
    margin: 20px 0;
}

.errors {
    color: #ff752e;
    margin-bottom: 5px;
}


