* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f0f2f5;
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.form-card {
    background: #fff;
    width: 100%;
    max-width: 520px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-card h2 {
    margin: 0 0 10px;
}

.form-card p {
    color: #666;
    margin-bottom: 20px;
}

.field input,
.field select,
.field textarea,
.grid select {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 15px;
}

.grid {
    display: flex;
    gap: 10px;
}

.grid select {
    flex: 1;
}

textarea {
    resize: vertical;
}


.hp-field {
    position: absolute;
    left: -9999px;
    height: 0;
    width: 0;
    opacity: 0;
}



button {
    background: #0052cc;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #003d99;
}

@media (max-width: 600px) {
    .grid {
        flex-direction: column;
    }
}
