body {
    background: #f6f8fa;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    margin: 0;
    padding: 0;
}

.container {
    background: #fff;
    max-width: 600px;
    margin: 40px auto 0 auto;
    padding: 2.5em 2em 2em 2em;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1.5px 4px rgba(0,0,0,0.04);
    position: relative;
}

h1 {
    font-size: 2.1em;
    font-weight: 700;
    margin-bottom: 0.7em;
    color: #1a237e;
    letter-spacing: 0.5px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

label {
    font-weight: 500;
    margin-bottom: 0.5em;
    display: block;
    color: #333;
}

input[type="text"], .gmpx-PlaceAutocomplete, .gmpx-PlaceAutocomplete input {
    width: 100%;
    padding: 0.7em 1em;
    border: 1.5px solid #bdbdbd;
    border-radius: 6px;
    font-size: 1em;
    margin-bottom: 1em;
    background: #f9f9fb !important;
    color: #222 !important;
    transition: border 0.2s;
    box-shadow: none !important;
    caret-color: #1976d2 !important;
}
input[type="text"]:focus, .gmpx-PlaceAutocomplete:focus, .gmpx-PlaceAutocomplete input:focus {
    border-color: #1976d2;
    outline: none;
    background: #fff !important;
    color: #222 !important;
}

button[type="submit"] {
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.7em 2.2em;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5em;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
    transition: background 0.2s;
}
button[type="submit"]:hover {
    background: #1565c0;
}

.reset-btn-small {
    position: absolute;
    top: 1.2em;
    right: 1.2em;
    background: #fff;
    color: #1976d2;
    border: 1.5px solid #1976d2;
    border-radius: 5px;
    padding: 0.4em 1.1em;
    font-size: 0.98em;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}
.reset-btn-small:hover {
    background: #1976d2;
    color: #fff;
}

h2, h3 {
    color: #1976d2;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

strong {
    color: #263238;
}

div {
    margin-bottom: 0.7em;
}

.error {
    background: #ffebee;
    color: #b71c1c;
    border: 1.5px solid #e57373;
    border-radius: 6px;
    padding: 1em 1.2em;
    margin-top: 1.5em;
    font-size: 1.08em;
}

@media (max-width: 700px) {
    .container {
        max-width: 98vw;
        padding: 1.2em 0.5em 1.5em 0.5em;
    }
    h1 {
        font-size: 1.3em;
    }
    button[type="submit"], .reset-btn-small {
        font-size: 0.98em;
        padding: 0.5em 1.2em;
    }
}
