html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    color: #252423;
    background: #f4f5f7;
}

.main {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-block: 50px;
    padding-right: 20px;
}

.wrapper {
    width: 100%;
    max-width: 500px;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.banner {
    text-align: center;
    margin-bottom: 20px;
}

.banner a {
    box-shadow: none;
}

.lenochatBanner {
    max-width: 100%;
    height: auto;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.lenochatBanner:hover {
    opacity: 0.75;
}

.fieldContainer {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-block: 30px;
}

.inputLabel {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
}

.passwordContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.passwordVisibilityButton {
    position: absolute;
    right: 10px;
    top: 10px;
}

.linkContainer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

.link {
    font-size: 13px;
    color: #0078d4;
    text-decoration: none;
    font-weight: 500;
}

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

.inputField {
    width: 100%;
    font-size: 13px;
    padding-inline: 10px;
    height: 48px;
    border-radius: 8px !important;
    border: 1px solid #dcdcdc !important;
    background: white;
}

.inputSubmit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 100%;
    line-height: 16px;
    border-radius: 24px;
    font-weight: 500;
    font-size: 16px;
    padding-inline: 20px;
    background: #0078d4;
    color: white;
    border: none;
    cursor: pointer;
}

.inputSubmit:hover {
    background: #095a97;
}

.languageMenu {
    margin-top: 25px;
    text-align: center;
    margin-bottom: 20px;
}

.description {
    margin-top: 10px;
    font-size: 13px;
    line-height: 18px;
    font-weight: 300;
}

.licenseNumber {
    text-decoration: underline;
}

.logoutButtonContainer {
    position: absolute;
    top: 10px;
    right: 0px;
}

.logoutButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    line-height: 16px;
    border-radius: 16px;
    font-weight: 300;
    font-size: 12px;
    padding-inline: 20px;
    background: white;
    color: #0078d4;
    border: 1px solid #0078d4;
    cursor: pointer;
}

.logoutButton:hover {
    background: #0078d4;
    color: white;
}

.widgetToggleContainer {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 50px;
    padding-block: 10px;
    border-block: 1px solid #dcdcdc;
}

.toggleLabel {
    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
}

.switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: '';
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    box-shadow:
        0px 2px 1px -1px rgba(0, 0, 0, 0.2),
        0px 1px 1px 0px rgba(0, 0, 0, 0.14),
        0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}

.slider:after {
    content: 'OFF';
    position: absolute;
    font-size: 12px;
    line-height: 22px;
    font-weight: 300;
    right: 11px;
    font-size: 10px;
    color: #ffffff;
}

input:checked + .slider {
    background-color: #4bb678;
}

input:unchecked + .slider {
    background-color: #9f9f9f;
}

input:checked + .slider:before {
    transform: translateX(34px);
}

input:checked + .slider:after {
    content: 'ON';
    left: 11px;
}
