body {
    font-family: "Inter", sans-serif;
}
.font-poppin {
    font-family: "Poppins", sans-serif;
}
.main {
    background-image: url("../images/auth-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
    background-color: #ffffff;
    position: relative;
    min-height: 100vh;
}
.bg-holder {
    position: absolute;
    width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    background-image: url("../images/auth-after.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
    overflow: hidden;
    will-change: transform, opacity, filter;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-repeat: no-repeat;
    z-index: 0;
}
.main #container-row {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}
.radio {
    border-radius: 6px;
    position: relative;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #000;
    border-radius: 10px;
}
.radio input {
    width: auto;
    height: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    cursor: pointer;
    border-radius: 6px;
    padding: 6px 20px;
    color: #000;
    font-size: 13px;
    transition: all 100ms linear;
    font-weight: 500;
}

.radio input:checked {
    background: #1558df;
    color: #fff;
}

.radio input:before {
    content: attr(label);
    display: inline-block;
    text-align: center;
    width: 100%;
    font-size: 12px;
    line-height: 2;
}
.logo-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 0;
}
.logo-title span {
    display: block;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 26px;
}
.auth-form .form-label {
    background: #1558df;
    color: #ffffff;
    border-radius: 7px;
    text-align: center;
    border: 1px solid #000;
}
.auth-form .form-control {
    border: 0;
}
.auth-form .form-control:focus {
    box-shadow: none;
}
.btn-auth {
    background: #1558df;
    color: #ffffff;
    transition: all 0.3s linear;
}
.btn-auth:hover,
.btn-auth:focus,
.btn-auth:active {
    background: #1558df;
    color: #ffffff;
}
@media (width <= 768px) {
    .main::after {
        content: none;
    }
    .bg-holder {
        display: none;
    }
}
