* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f2f4f8;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
h2 {
    text-align: left;
}
.form-container {
    background: #fff;
    padding: 25px;
    width: 90%;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.grid-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

label {
    font-size: 14px;
    margin-bottom: 6px;
}

input, select, textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
}

textarea {
    resize: none;
    height: 90px;
}

input:focus, select:focus, textarea:focus {
    border-color: #007bff;
}

button {
    padding: 12px;
    border: none;
    background: #007bff;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

/* 📱 Mobile */
@media (max-width: 600px) {
    .grid-form {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }
}
