html,
body {
    /* background-color: var(--accent-bg-color-1); */
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 100%;
}

.login {
    display: grid;
    place-content: center;
    min-width: 100vw;
    min-height: 100vh;
    background-image: url(/images/backgrounds/dna_login-bg-1.png), url(/images/backgrounds/dna_login-bg-2.jpg);
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right bottom;
    background-size: 50%, 40%;
    position: relative;
}
.login__body {
    max-width: 600px;
    width: 100%;
    padding: 20px;
}
.login__body .title {
    margin-bottom: 5px;
    font-weight: 400;
    font-size: clamp(25px, 4vw, 40px);
    font-family: var(--font-family-2);
    font-weight: 700;
    line-height: 100%;
    line-height: 1;
    position: relative;
    color: #000;
}
.login__logo {
    margin-bottom: 40px;
}
.login__form {
    width: 100%;
    max-width: 600px;
}
.login__form-elements {
    margin-top: 50px;
}
.login__form-elements input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1.5px solid #c1c1c1;
    background: #fff;
}
.login__form-elements .btn {
    padding: 17px 60px;
    margin-top: 60px;
}

.login__btn {
    margin-top: 40px;
    display: flex;
    align-items: center;
    column-gap: 8px;
    width: 100%;
    justify-content: center;
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;

    font-size: 24px;
    letter-spacing: -0.015em;
}
.login__btn:hover {
    background-color: var(--button-bg-color-hover);
    color: var(--button-text-color-hover);
}

.login__btn.login__btn--loading {
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
    cursor: not-allowed;
    position: relative;
}
.login__btn.login__btn--loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    animation: spin 2s linear infinite;
    background: url(../images/loading-animation.svg) center center no-repeat var(--button-bg-color);
}

.login__form-elements-row {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.login__form-elements-row button {
    display: flex;
    margin-left: auto;
    background: transparent;
    border: none;
    margin-top: 8px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    color: #070b30;
    cursor: pointer;
}
.login__form-elements-row button:hover {
    text-decoration: underline;
}
.login__footer {
    width: 100%;
    text-align: center;
    padding: 20px 5%;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}
.login__footer,
.login__footer a {
    color: #070b30;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
    /* 120% */
}
/* 
.login__image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.login__box {
    background-color: var(--accent-bg-color-2);
    padding: 55px 100px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
}
.login__title {
    font-weight: 500;
    font-size: clamp(22px, 3vw, 36px);
    text-transform: uppercase;
    color: var(--accent-color-1);
    margin-bottom: 20px;
}
.login__form {
    display: flex;
    flex-direction: column;
}

.login__form input {
    font-size: 14px;
    padding: 20px;
    width: 340px;
    border: none;
    margin-bottom: 25px;
}
.login__btn {
    display: flex;
    align-items: center;
    column-gap: 8px;
    width: 100%;
    justify-content: center;
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
    border: none;
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;

    font-size: 24px;
    letter-spacing: -0.015em;
}
.login__btn:hover {
    background-color: var(--button-bg-color-hover);
    color: var(--button-text-color-hover);
}

.login__btn.login__btn--loading {
    background-color: var(--button-bg-color);
    color: var(--button-text-color);
    cursor: not-allowed;
    position: relative;
}
.login__btn.login__btn--loading::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    animation: spin 2s linear infinite;
    background: url(../images/loading-animation.svg) center center no-repeat var(--button-bg-color);
} */
