/* styles.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
}.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header and Footer within Container */
public-header, public-footer {
    display: block;
}
public-header > *, public-footer > * {
    max-width: 1200px;
    margin: 0 auto;
}

header, footer {
    background-color: #004d40;
    color: #fff;
    text-align: center;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}.form-group {
    margin-bottom: 15px;
}.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}.form-group input,.form-group select,.form-group button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}.form-group button {
    background-color: #004d40;
    color: #fff;
    border: none;
}.form-group button:hover {
    background-color: #00332e;
}.location-options {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}.location-options button {
    flex: 1;
    padding: 8px;
    font-size: 0.9em;
    background-color: #00796b;
    color: #fff;
    border: none;
    border-radius: 4px;
}.location-options button:hover {
    background-color: #005a4f;
}.cookie-banner {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.9em;
    margin-bottom: 20px;
}.otp-section {
    display: none;
    margin-top: 15px;
}.terms {
    font-size: 0.8em;
    margin-top: 10px;
}

