
.form-wrapper {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.form-card {
    width: 100%;
    max-width: 550px;
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.form-group textarea {
    resize: none;
    height: 90px;
}

.form-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.form-buttons button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #2b2c6e;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-buttons button:hover {
    background-color: #2b2c6e;
}
.error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}