body {
    margin: 0;
    font-family: Circe, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.88;
}

.bg {
    background: url("/img/bg5.jpg");
    background-size: cover;
}

.sign-in {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow: hidden visible;
}

.sign-in .sign-in-card {
    position: relative;
    display: block;
    flex-direction: column;
    width: 100%;
    max-width: 45rem;
    margin: auto;
    padding: 3rem;
    border-radius: 0.6rem;
    background: #FFF;
    box-shadow: 1rem 1rem 2.5rem rgb(0 0 0 / 15%);
    gap: 2rem;
}

.sign-in .sign-in-card .sign-in__heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 5%;
}

.sign-in .sign-in-card .sign-in__heading svg {
    width: auto;
    max-width: 16rem;
    height: auto;
    max-height: 3rem;
}

.sign-in .sign-in-card .btn-google-signin {
    position: relative;
    width: 100%;
    padding: 1rem;
    border: 1px solid #FFF;
    border-radius: 6.25rem;
    background: transparent;
    color: #FFF;
}

.sign-in .sign-in-card .btn-google-signin:hover {
    background: #1E1F25;
}

.sign-in .sign-in-card .sign-in__break-or {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2%;
}

.sign-in .sign-in-card .sign-in__break-or .line {
    width: 100%;
    height: 0.07rem;
    background: #34384C;
}

.sign-in .sign-in-card .sign-in__break-or p {
    color: #A5ADCF;
}

.sign-in .sign-in-card .sign-in__title {
    font-size: 2rem;
    line-height: 3rem;
    text-align: center;
    text-transform: uppercase;
}

.sign-in .sign-in-card .sign-in__forms {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sign-in .sign-in-card .sign-in__forms .forms-group {
    position: relative;
}

.sign-in .sign-in-card .sign-in__forms .form-control {
    padding: 1rem 1.75rem;
    border: 1px solid #dee2e6;
    background-color: #fff;
    font-size: 1.125rem;
    color: #495057;
}

.sign-in .sign-in-card .sign-in__forms .form-control::placeholder {
    font-weight: 400;
    color: #A5ADCF;
}

.sign-in .sign-in-card .sign-in__forms .remember-forgot-password .forgot-password {
    position: relative;
    top: 0.125rem;
    font-weight: 500;
    color: #0964BA;
    text-decoration: underline;
    cursor: pointer;
    transition: all linear 0.2s;
}

.sign-in .sign-in-card .sign-in__forms .remember-forgot-password .forgot-password:hover {
    color: #246CF9;
}

.login-table {
    width: 100%;
    font-size: 1.3rem;
    line-height: 2rem;
    color: #F5F9FC;
}

.login-table tr {
    text-align: center;
}

.login-table td {
    padding: 1.4rem 0.5rem 0 0;
}

.btn-secondary {
    display: inline-block;
    width: 100%;
    padding: 0.8rem 2.6rem;
    border: none;
    border-radius: 0.6rem;
    background: #132436;
    font-size: 1.4rem;
    color: #F5F9FC;
    transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}

.btn-secondary:hover {
    box-shadow: 0 0 4rem 4rem #007DB6 inset;
}

.btn-secondary svg,
.btn-secondary span,
.btn-secondary i {
    vertical-align: middle;
}

.icon-btn-fill {
    width: 2.4rem;
    height: 2.4rem;
    fill: #F5F9FC;
}

.icon-logo,
.icon-logo-m {
    fill: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><linearGradient id='grad' x1='0%' y1='40%' x2='0%' y2='60%'><stop offset='0%' stop-color='%2300AB4E'/><stop offset='100%' stop-color='%23007DB6'/></linearGradient></svg>#grad") #007DB6;
}

.login-error {
    height: 1%;
    font-size: 1.2rem;
    font-weight: bold;
    color: #bd4242;
    text-align: center;
}

.password-input,
.login-input {
    width: 100%;
}

.reload-icon {
    display: block;
    height: 2rem;
    cursor: pointer;
}

.form-text {
    color: #7184ad;
}

.form-control:focus {
    border-color: var(--blue-color);
    background-color: #fff;
    color: #495057;
}

.form-control::placeholder {
    color: rgb(0 0 0 / 35%);
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
}

.form-control-plaintext {
    color: #212529;
}

/* Адаптив */
@media (max-width: 767.98px) {
    .sign-in .sign-in-card {
        max-width: 100%;
        margin: 0;
        padding: 1.5rem;
        border-radius: 0;
    }
}

@media (max-width: 575.98px) {
    .sign-in .sign-in-card {
        padding: 1rem;
    }
}