* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Clash Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

html,
body {
    min-height: 100%;
}

body {
    background: #09090b;
    color: #e4e4e7;
}

a {
    color: #f43f5e;
    text-decoration: none;
    transition: color .2s ease;
}

a:focus {
    outline: none !important;
    text-decoration: none !important;
}

a:hover {
    color: #fb7185;
}

p {
    font-size: 14px;
    line-height: 1.6;
    color: #a1a1aa;
}

ul,
li {
    list-style-type: none;
}

.text-center {
    text-align: center;
}

button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

.limiter {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.bg-rose,
.bg-zinc {
    position: fixed;
    border-radius: 9999px;
    pointer-events: none;
}

.bg-rose {
    width: 440px;
    height: 440px;
    top: -150px;
    right: -140px;
    background: rgba(244, 63, 94, .2);
    filter: blur(100px);
}

.bg-zinc {
    width: 420px;
    height: 420px;
    bottom: -170px;
    left: -120px;
    background: rgba(39, 39, 42, .45);
    filter: blur(105px);
}

.container-login {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    position: relative;
    z-index: 2;
}

.wrap-login {
    width: 100%;
    max-width: 520px;
    border: 1px solid rgba(63, 63, 70, .95);
    background: rgba(24, 24, 27, .8);
    backdrop-filter: blur(8px);
    padding: 30px;
}

.logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.logo-wrap img {
    height: 22px;
    width: auto;
}

.login-form {
    width: 100%;
}

.login-form-title {
    display: block;
    font-size: 30px;
    line-height: 1.1;
    color: #fafafa;
    text-align: center;
    font-weight: 500;
    letter-spacing: -.02em;
}

.login-form-subtitle {
    margin-top: 8px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 15px;
    color: #a1a1aa;
}

.wrap-input {
    width: 100%;
    position: relative;
    margin: 24px 0;
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.w-50 {
    width: 50%;
}

.w-100 {
    width: 100%;
}

.input {
    position: relative;
    padding: .78rem .9rem;
    line-height: 1.25;
    color: #f4f4f5;
    background-color: rgba(24, 24, 27, .95);
    border: 1px solid #3f3f46;
    border-radius: 0;
    box-shadow: none;
    outline: none !important;
    font-size: 15px;
    display: block;
    width: 100%;
    height: 46px;
    transition: border-color .2s ease, background-color .2s ease;
}

.input:focus {
    border-color: #f43f5e;
    background-color: rgba(24, 24, 27, 1);
}

.focus-input {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.focus-input::after {
    font-size: 14px;
    color: #a1a1aa;
    line-height: 1.2;
    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 14px;
    left: 8px;
    padding-left: 5px;
    transition: all .25s ease;
}

.input:focus + .focus-input::after {
    font-size: 12px;
    top: -18px;
    color: #f43f5e;
}

.has-val.input + .focus-input::after {
    top: -18px;
    font-size: 12px;
    color: #d4d4d8;
}

.btn-show-pass {
    z-index: 10;
    font-size: 15px;
    color: #a1a1aa;
    display: flex;
    align-items: center;
    position: absolute;
    height: 100%;
    top: 0;
    right: 10px;
    padding-right: 5px;
    cursor: pointer;
    transition: color .2s ease;
}

.btn-show-pass:hover {
    color: #f43f5e;
}

.btn-show-pass.active {
    color: #fb7185;
}

.tos-line {
    margin-top: 6px;
}

p.small {
    color: #a1a1aa;
    font-size: 12px;
}

p.small a {
    color: #f43f5e;
}

.form-groups {
    margin-top: 16px;
    margin-bottom: 18px;
}

.form-groups label {
    display: inline-block;
    margin-bottom: 5px;
    color: #e4e4e7;
    font-size: 14px;
}

.form-groups small {
    display: block;
    color: #a1a1aa;
    margin-bottom: 8px;
    font-size: 12px;
}

.capcha-row {
    gap: 12px;
}

.capcha {
    width: 120px;
    height: 60px;
    border: 1px solid #3f3f46;
}

.form-control {
    flex: 1;
    min-width: 120px;
    padding: .78rem .9rem;
    color: #f4f4f5;
    background: rgba(24, 24, 27, .95);
    border: 1px solid #3f3f46;
    border-radius: 0;
    outline: none;
}

.form-control:focus {
    border-color: #f43f5e;
}

.actions-row {
    margin-top: 8px;
}

.text-small {
    font-size: 13px;
    color: #a1a1aa;
}

.text-small a {
    color: #d4d4d8;
}

.text-small a:hover {
    color: #ffffff;
}

.returning-link {
    margin-top: 11px;
    text-align: left;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    margin-bottom: 10px;
    color: #71717a;
    font-size: 12px;
    letter-spacing: .02em;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    height: 1px;
    background: #27272a;
    flex: 1;
}

.login-btn {
    margin: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #f43f5e;
    color: #fff;
    transition: all .2s ease;
    letter-spacing: .2px;
    padding: 0 1rem;
    font-size: 15px;
    line-height: 1;
    border-radius: 0;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    border: 1px solid #f43f5e;
    min-height: 44px;
}

.login-btn:hover {
    background: #e11d48;
    border-color: #e11d48;
    color: #fff;
}

.login-btn:focus {
    background: #be123c;
    border-color: #be123c;
    color: #fff;
}

.btn-socials {
    margin-top: 10px;
}

.btn-socials .btn-social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    margin: 10px 0;
    border-radius: 0;
    border: 1px solid rgba(63, 63, 70, .95) !important;
    transition: border-color .2s ease, opacity .2s ease, background-color .2s ease;
    min-height: 44px;
    padding: 10px 14px !important;
    padding-left: 14px !important;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .01em;
    line-height: 1.2;
    background: #18181b !important;
    color: #f4f4f5 !important;
}

.btn-socials .btn-social:hover {
    opacity: 1;
    border-color: rgba(82, 82, 91, 1) !important;
    background: #202022 !important;
}

.btn-socials .btn-social > :first-child {
    position: static !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    line-height: 18px !important;
    border-right: 0 !important;
    font-size: 0 !important;
}

.social-logo {
    width: 18px;
    height: 18px;
    background-size: 18px !important;
}

.btn-socials .btn-social.btn-github {
    background: #111111 !important;
    border-color: #2a2a2a !important;
    color: #ffffff !important;
}

.btn-socials .btn-social.btn-github:hover,
.btn-socials .btn-social.btn-github:focus {
    background: #000000 !important;
    border-color: #3a3a3a !important;
}

.btn-socials .btn-social.btn-github .social-logo {
    filter: grayscale(1) brightness(1.45);
}

.ui-pnotify .alert {
    background-color: #27272a !important;
    color: #f4f4f5;
    border-color: #3f3f46 !important;
}

.ui-pnotify .alert-info {
    background-color: rgba(244, 63, 94, .15) !important;
    border-color: rgba(244, 63, 94, .55) !important;
    color: #ffe4e6 !important;
}

.ui-pnotify .alert-info .alert-icon-info {
    background-color: #f43f5e !important;
    color: #fff;
}

.ui-pnotify .alert-error {
    background-color: #7f1d1d !important;
    color: #fee2e2;
    border-color: #ef4444 !important;
}

.ui-pnotify .alert-error .alert-icon-error {
    border-bottom-color: #fee2e2 !important;
    color: #7f1d1d;
}

.ui-pnotify .icon-remove::before {
    content: 'x';
}

@media (max-width: 640px) {
    .container-login {
        padding: 16px;
    }

    .wrap-login {
        padding: 22px;
    }

    .login-form-title {
        font-size: 26px;
    }

    .actions-row {
        margin-top: 10px;
    }

    .actions-row .w-50,
    .actions-row .w-100 {
        width: 100%;
    }

    .returning-link {
        text-align: center;
    }

    .capcha-row {
        flex-direction: column;
        align-items: stretch;
    }

    .capcha {
        width: 100%;
        height: auto;
    }
}
