.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #f5f7fa;
}

.auth-card {
    background: white;
    border-radius: 12px;
    padding: 32px 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.auth-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 24px;
    display: block;
}

.auth-card h1 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
    color: #1d1d1f;
}

.auth-form .form-group {
    margin-bottom: 16px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #1d1d1f;
}

.auth-form input,
.auth-form select {
    width: 100%;
    height: 35px;
    padding: 0 12px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
    box-sizing: border-box;
    -webkit-appearance: none;  /* Remove default iOS styling */
    -moz-appearance: none;     /* Remove default Firefox styling */
    appearance: none;
}

.auth-form input:focus,
.auth-form select:focus {
    border-color: #0071e3;
    outline: none;
}

.checkbox-group {
    margin: 12px 0;
    display: flex;
    align-items: center;
    min-height: 35px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    cursor: pointer;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
}

.checkbox-group label {
    margin: 0;
    font-size: 14px;
    color: #1d1d1f;
    cursor: pointer;
}

.auth-button {
    width: 100%;
    height: 35px;
    margin-top: 16px;
    background: #0071e3;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.auth-button:hover {
    background: #0077ed;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #86868b;
}

.auth-footer a {
    color: #0071e3;
    text-decoration: none;
}

.form-row {
    display: flex;
    gap: 16px;
    margin: 0 0 16px 0;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.terms-link {
    color: #0071e3;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.forgot-password {
    display: block;
    text-align: right;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    margin-top: 4px;
}

/* Custom dropdown arrow for select */
.auth-form select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;  /* Space for the arrow */
}

/* Add same padding to other inputs for consistency */
.auth-form input {
    padding-right: 40px;
} 