.login-page {
    display: flex;
    width: 100%;
}

.login-page .side-block {
    width: 30%;
    height: 100vh;
    background-color: rgba(231, 253, 250, 1);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.login-page .side-block .sub-block {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 165px;
    z-index: 1;
}

.login-page .side-block .sub-block .logo {
    width: 180px;
    padding-bottom: 25px;
}

.login-page .side-block .sub-block h2 {
    color: rgba(2, 24, 20, 1);
    font-size: 42px;
    font-weight: 700;
    padding-bottom: 10px;
}

.login-page .side-block .sub-block span {
    color: rgba(34, 34, 34, 1);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin: 0 15px;
}

.login-page .side-block .lion {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 380px;
    height: auto;
    z-index: 1;
}

.login-page .main-block {
    width: 70%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.login-page .main-block form {
    border: 1px solid rgba(7, 88, 76, 1);
    border-radius: 30px;
    padding: 25px;
    width: 400px;
}

.login-page .main-block form h2 {
    font-size: 28px;
    font-weight: 600;
    color: rgba(2, 24, 20, 1);
    text-align: center;
    padding-bottom: 20px;
}

.login-page .main-block form .input-group {
    display: flex;
    align-items: center;
    width: 95%;
    border: 1px solid rgba(108, 108, 108, 1);
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    margin: 15px 0;
}

.login-page .main-block form .input-group img {
    width: 22px;
    height: 22px;
    margin-right: 12px;
}

.login-page .main-block form .input-group input {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: rgba(108, 108, 108, 1);
    padding: 0;
}

.login-page .main-block form .input-group input:hover::placeholder {
    color: rgba(67, 66, 66, 1);
}

.login-page .main-block form .input-group input:not(:placeholder-shown),
.login-page .main-block form .input-group input:focus,
.login-page .main-block form .input-group input:hover {
    color: rgba(67, 66, 66, 1);
}

.login-page .main-block form .error {
    font-size: 14px;
    color: red;
    margin-top: -10px;
}

.login-page .main-block form .button {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Чекбокс */
.login-page .main-block form .block-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 6px;
    position: relative;
    user-select: none;
}

.login-page .main-block form .block-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.login-page .main-block form .block-checkbox .checkbox {
    width: 16px;
    height: 16px;
    border: 1.25px solid rgba(159, 159, 159, 1);
    border-radius: 5px;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
}

.login-page .main-block form .block-checkbox input:checked + .checkbox {
    background-color: rgba(15, 189, 163, 1);
    border-color: rgba(15, 189, 163, 1);
}

.login-page .main-block form .block-checkbox input:checked + .checkbox::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.login-page .main-block form .block-checkbox .checkbox-span {
    font-size: 14px;
    font-weight: 400;
    color: rgba(34, 34, 34, 1)
}

