.intro {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-in-out;
    width: calc(100% - 40px);
	max-width: 800px;
}

.intro h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.intro span {
    color: var(--main-accent-color);
}

.intro p {
    color: #555;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

.form {
	background: white;
	border-radius: 1rem;
	padding: 30px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	animation: slideUp 0.7s ease-out;
	width: calc(100% - 100px);
	max-width: 1000px;
    display: flex;
	flex-direction: column;
	gap: 20px;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 600;
    margin-bottom: 5px;
}

input,
select,
textarea {
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    padding: 0.7rem;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
textarea {
    font-family: system-ui;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--main-light_accent-color);
    box-shadow: 0 0 0 2px rgba(249, 69, 37, 0.2);
    outline: none;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.btn {
    display: block;
    width: 100%;
    background: #111;
    color: #fff;
    font-size: 1rem;
    padding: 0.9rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.btn:hover {
    background: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error {
    border-color: #e53935 !important;
    box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.2);
}

@media (max-width: 768px) {
    .form {
        padding: 20px;
		width: calc(100% - 80px);
    }
}