.path-contact .layout-container {
  display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.path-contact .layout-container main {
  flex-grow: 1;
}

form.contact-message-feedback-form {
  max-width: 1200px;
    margin: 8rem auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 3rem;
        color: #333;
}

form.contact-message-feedback-form h2 {
  text-align: center;
  color: #666;
}

form.contact-message-feedback-form label {
  display: block;
            margin-bottom: 8px;
            color: #666;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
}
form.contact-message-feedback-form input, form.contact-message-feedback-form textarea {
width: 100%;
            padding: 15px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #f8f9fa;
}

form .form-actions {
      width: fit-content;
    margin: 0 auto;
}

form .form-actions input {
  text-transform: uppercase;
    text-decoration: none;
    color: #f1f1f1;
    background-color: black;
    padding: 1rem 1.5rem;
    width: fit-content;
    margin: 0 auto;
}

form .form-actions input:hover {
background-color: #00aaff;
}

.path-contact .layout-container form .js-form-item {
  padding: 1rem 0;
}