﻿.form-wrapper {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.form-title {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #495869;
}

.form-field {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

    .form-field label {
        margin-bottom: 6px;
        font-weight: 500;
        color: #495869;
    }

.form-input {
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

    .form-input:focus {
        outline: none;
        border-color: #495869;
        box-shadow: 0 0 0 3px rgba(73, 88, 105, 0.2);
    }

.textarea {
    min-height: 100px;
    resize: vertical;
}

.form-button {
    background-color: #495869;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 120px;
}

    .form-button:hover {
        background-color: #3a4756;
    }

.form-error {
    color: #d9534f;
    margin-bottom: 12px;
    font-size: 14px;
}

.form-result {
    margin-top: 20px;
    font-size: 16px;
    color: #28a745;
    text-align: center;
}
