* {
    font-family: "Inter", sans-serif;
    -webkit-tap-highlight-color: transparent;
}

.auth-brand-bar h1 {
    margin: 0;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    letter-spacing: normal;
}

.auth-brand {
    display: inline-flex;
    align-items: baseline;
    font-family: Georgia, serif;
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-bottom: 2px solid #00af95;
    padding-bottom: 4px;
    line-height: 1;
    text-decoration: none;
}

.auth-label {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #00af95;
    padding: 2px 8px;
    border-radius: 4px;
}

.auth-card {
    background: #ffffff;
    border: 1px solid #EBE2D2;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.auth-heading {
    font-family: Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.auth-subheading {
    font-family: Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.role-tab {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
}

.role-tab--active {
    background-color: #00af95;
    color: #ffffff;
}

.role-tab--inactive {
    background-color: #F5EFE5;
    color: #4A3F36;
}

.role-tab--inactive:hover {
    background-color: #EFE0C2;
}

.form-input {
    padding: 11px 12px;
    border: 1px solid #EBE2D2;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #00af95;
    box-shadow: 0 0 0 3px #EFE0C2;
}

.form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #4A3F36;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: #00af95;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: #009a83;
    transform: translateY(-1px);
}

.btn-primary:active {
    background: #008472;
    transform: translateY(0);
}

.btn-secondary {
    background: #F5EFE5;
    color: #4A3F36;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background: #EFE0C2;
}
