:root {
    --primary: #0c717a;
    --secondary: #a55626;
    --accent-1: #804920;
    --accent-2: #c3a387;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: linear-gradient(135deg, var(--primary), var(--accent-1));
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.form-container {
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

h1 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 6px;
}

.subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 25px;
    font-size: 14px;
}

.section {
    margin-bottom: 22px;
}

.section h2 {
    font-size: 17px;
    color: var(--secondary);
    margin-bottom: 10px;
    border-left: 4px solid var(--secondary);
    padding-left: 10px;
}

input, select {
    width: 100%;
    padding: 11px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary);
}

button {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: var(--secondary);
}

.quote {
    margin-top: 18px;
    text-align: center;
    font-style: italic;
    color: var(--accent-1);
    font-size: 13px;
}

@media (max-width: 600px) {
    .form-container {
        padding: 25px;
    }
}
@media (max-width:420px) {
    h1{
        font-size: 1.5rem;
    }
}