body {
    font-family: sans-serif;
    background-color: #fff8f5; /* Light peach background */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #aa3700;
    font-weight: bold;
    font-size: 2rem;
    text-decoration: none;
}
.page-container {
    width: 100%;
    max-width: 500px; /* Adjust as needed */
    padding: 20px;
    box-sizing: border-box;
}

header {
    margin-bottom: 40px;
}

.logo {
    height: 30px; /* Adjust as needed */
    color: #d95f20; /* Logo color */
}

.form-container {
    text-align: center;
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

p {
    margin-bottom: 30px;
    color: #666;
}

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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    background-color: #fff;
}

.name-fields,
.location-fields {
    display: flex;
    gap: 15px;
}

.name-fields input,
.location-fields select {
    flex: 1;
}

.phone-field {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
}

.phone-field span {
    padding: 12px 15px;
    border-right: 1px solid #ddd;
    color: #666;
}

.phone-field input {
    border: none;
    flex-grow: 1;
    padding: 12px 15px;
}

.terms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9em;
    color: #555;
}

.terms input[type="checkbox"] {
    accent-color: #d95f20; /* Checkbox color */
}

.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #d95f20; /* Primary button color */
    color: white;
}

.btn-primary:hover {
    background-color: #b84e17;
}

.divider {
    margin: 25px 0;
    color: #aaa;
    font-size: 0.9em;
}

.btn-google {
    background-color: white;
    color: #555;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-google:hover {
    background-color: #f9f9f9;
}

.signin-link {
    margin-top: 30px;
    font-size: 0.9em;
}

.signin-link a {
    color: #d95f20;
    text-decoration: none;
    font-weight: bold;
}

.signin-link a:hover {
    text-decoration: underline;
}
