body.login-page {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background:
        radial-gradient(
        circle at 15% 20%,
        rgb(255 255 255 / 12%),
        transparent 30%
        ),
        radial-gradient(
        circle at 85% 75%,
        rgb(208 73 6 / 18%),
        transparent 28%
        ),
        linear-gradient(145deg, #0f5f43, var(--main-color));
}

.login-main {
    display: flex;
    width: 100%;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 36px 20px;
}

.login-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    padding: 38px;
    overflow: hidden;
}

.login-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--main-color),
        var(--main-highlight-color)
        );
}

.login-header {
    margin-bottom: 28px;
    text-align: center;
}

.login-logo {
    width: 190px;
    margin: 0 auto 22px;
}

.login-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: var(--main-highlight-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.login-kicker::before {
    content: "";
    width: 18px;
    height: 3px;
    background: var(--main-highlight-color);
    border-radius: 5px;
}

.login-title {
    margin-bottom: 7px;
    font-size: 27px;
}

.login-description {
    color: var(--muted-color);
    font-size: 14px;
}

.login-options {
    display: flex;
    min-height: 32px;
    margin: -3px 0 15px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.form-control {
    width: 100%;
}
.login-footer {
    padding: 14px 20px;
    color: rgb(255 255 255 / 80%);
    font-size: 13px;
    text-align: center;
}

@media (max-width: 520px) {
    .login-main {
        padding: 20px 14px;
    }

    .login-card {
        padding: 32px 22px;
    }

    .login-logo {
        width: 170px;
    }

    .login-title {
        font-size: 24px;
    }

    .login-options {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }
}