/* Login page. */

.login-page {
    min-height: calc(100vh - 54px);
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 0, rgba(242, 90, 0, 0.12), transparent 260px),
        #100b08;
}

.login-panel {
    width: min(100%, 420px);
    padding: 38px 22px 42px;
    color: #ffffff;
}

.login-title {
    margin: 0 0 32px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}

.login-form {
    display: grid;
    gap: 24px;
}

.login-field-group {
    display: grid;
    gap: 10px;
}

.login-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.login-label {
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
}

.login-forgot {
    color: #f25a00;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.login-forgot:hover,
.login-forgot:focus {
    color: #ff7a2a;
}

.login-input-wrap {
    min-height: 51px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: #1c1917;
}

.login-input-icon {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    color: #667890;
}

.login-input-icon svg,
.login-password-toggle svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.login-input {
    width: 100%;
    min-width: 0;
    height: 49px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
}

.login-input::placeholder {
    color: #33435b;
    opacity: 1;
}

.login-password-toggle {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #667890;
}

.login-submit {
    margin-top: 10px;
}
@media (min-width: 768px) {
    .login-page {
        min-height: calc(100vh - 56px);
    }

    .login-panel {
        width: min(100%, 460px);
        padding: 54px 28px 56px;
    }

    .login-title {
        font-size: 29px;
    }
}
.login-activation-prompt {
    margin-top: 48px;
    text-align: center;
}

.login-signup-prompt {
    margin: 12px 0 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.6;
}
