html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: #ffffff;
    font-family: ulp-font, -apple-system, BlinkMacSystemFont, Roboto, Helvetica, sans-serif;
    margin: 0;
}

.formContainer {
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
    box-sizing: border-box;
    padding: 24px 16px calc(24px + env(safe-area-inset-bottom));
}

.form {
    margin: 24px auto;
    padding: 10px;
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}


.formBrand {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: bolder;
    letter-spacing: 0.02em;
    color: #2d333a;
}

.formTitle {
    font-size: 24px;
    text-align: center;
    line-height: 1.5;
    color: #2d333a;
    font-weight: bolder;
}

.formExplain {
    font-size: 14px;
    text-align: center;
    color: #2d333a;
    line-height: 1.5;
}

input {
    margin-top: 10px;
    width: 100%;
    max-width: 320px;
    height: 50px;
    padding: 0 16px;
    border: 1px solid #c2c8d0;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

button {
    width: 100%;
    max-width: 320px;
    height: 52px;
    padding: 4px 16px;
    border-radius: 6px;
    background-color: rgb(16, 163, 127);
    border: 0;
    font-size: 16px;
    color: #ffffff;
    margin-top: 24px;
    box-sizing: border-box;
}

button:disabled {
    background-color: #c2c8d0;
}

.form--representation {
    max-width: 520px;
}

.loginRepresentationOptions {
    width: 100%;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loginRepresentationOption {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid #c2c8d0;
    border-radius: 8px;
    color: #2d333a;
    font-size: 16px;
    box-sizing: border-box;
    cursor: pointer;
    background: #fff;
}

.loginRepresentationOption:hover {
    border-color: #101828;
}

.loginRepresentationOption:has(input:checked) {
    border-color: rgb(16, 163, 127);
    background: #ecfdf3;
}

.loginRepresentationOptions input {
    width: 18px;
    height: 18px;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    accent-color: rgb(16, 163, 127);
}

.loginRepresentationStatus {
    min-height: 24px;
    margin: 12px 0 0;
    color: #475467;
    font-size: 14px;
    text-align: center;
}

.loginRepresentationStatus[data-state="error"] {
    color: #b42318;
}

.formLink {
    margin-top: 18px;
}

.formLink a {
    color: rgb(16, 163, 127);
    text-decoration: none;
}

.formLink a:hover {
    text-decoration: underline;
}

.localeSwitch {
    display: inline-flex;
    border: 1px solid #c2c8d0;
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}
.localeSwitch--btn {
    min-width: 48px;
    min-height: 44px;
    margin: 0;
    padding: 8px 14px;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #2d333a;
    font-size: 16px;
    font-weight: 700;
}
.localeSwitch--btn.is-active {
    background: #102a43;
    color: #fff;
}
.localeSwitch--page {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 20;
}
.languageChoice {
    width: 100%;
    max-width: 320px;
    min-height: 56px;
    margin-top: 12px;
    border: 1px solid #c2c8d0;
    border-radius: 10px;
    background: #fff;
    color: #2d333a;
    font-size: 1.1rem;
    font-weight: 700;
}
.languageChoice:hover {
    border-color: rgb(16, 163, 127);
    background: #ecfdf3;
}