* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

body {
    font: 14px Poppins, sans-serif;
    color: #2E2E2E;
    max-height: 100%;
}

.container {
    display: flex;
    height: 100vh;
    background: var(--background);
    overflow: hidden;
    /*animation: 0.5s fadeIn;
  animation-fill-mode: forwards;*/
    margin: 0;
    justify-content: center;
    align-items: center;
}

.img-container {
    flex: 1;
    background: url("/build/layouts/auth/book-bg.jpg") left / cover no-repeat;
}

.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    max-width: 500px;
    background-color: #FFFFFF;
    z-index: 9999;
    height: auto;
    border-radius: 20px;
    padding-bottom: 30px;
}

.content-logo {
    display: block;
    margin-top: 50px;
    margin-bottom: 55px;
}

.text-logo {
    display: block;
    margin-bottom: 24px;
    width: 210px;
}

.form-container {
    width: 60%;
    padding: 10px;
}

#form-forgot {
    display: none;
}

.access-title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: rgb(27, 27, 27);
    margin-bottom: 24px;
}

.create-title {
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 28px;
    color: rgb(27, 27, 27);
    margin-bottom: 60px;
}

.title-middle {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: rgb(27, 27, 27);
    line-height: 28px;
    margin-bottom: -24px;
}

.password-title {
    margin-top: 50px;
}

.form-container form {
    font-family: Mulish, sans-serif;
}

.title {
    font-size: 18px;
    font-weight: bold;
}

.d-none {
    display: none;
}

.disable {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

.input-pad {
    position: relative;
    padding: 8px 0 0;
    margin-top: 30px;
    width: 100%;
}

.input-pad input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #2E2E2E;
    padding: 9px 0 4px;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    transition: border-color 0.2s ease 0s;
}

.input-pad input::placeholder {
    color: transparent;
}

.input-pad label {
    position: absolute;
    top: 20px;
    display: block;
    font-family: Roboto, sans-serif;
    font-weight: normal;
    font-size: 10px;
    opacity: 0.4;
    transition: all 0.2s ease 0s;
}

.input-pad input:focus {
    border-bottom: 2px solid #2E2E2E;
}

.input-pad input:focus + label,
.input-pad input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 12px;
    opacity: 1;
}

.input-pad .btn-show {
    position: absolute;
    top: 12px;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: transparent;
    background-size: 20px;
    opacity: 0.5;
    border: none;
    cursor: pointer;
}

.invalid-feedback {
    display: none;
    margin-top: 4px;
    font-size: 12px;
    color: #DD2F14;
}

.input-pad.error input {
    border-color: #DD2F14;
}

.input-pad.error input + label {
    opacity: 1 !important;
    color: #DD2F14;
}

.input-pad.error .invalid-feedback {
    display: block;
}

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

.btn-primary {
    cursor: pointer;
    height: 40px;
    width: 100%;
    padding: 10px 20px;
    margin: 60px 0 10px;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    border-radius: 4px;
    text-transform: uppercase;
    background: var(--background) !important;
}

.btn-link-secondary {
    border: none;
    background-color: transparent;
    font-size: 14px;
    color: #BCBCBC;
    cursor: pointer;
}

.btn-link-secondary:hover {
    color: #808080;
}

.btn-link-primary {
    border: none;
    background-color: transparent;
    font-size: 14px;
    color: #FFB727;
    cursor: pointer;
}

.btn-signup {
    display: block;
    margin-top: 18px;
    text-decoration: none;
    color: #FFB727;
}

.image-banner {
    width: 100%;
    border-radius: 8px;
    max-height: 250px;
    height: auto;
}

.content-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.link-banner {
    padding: 0 40px;
    margin-top: 20px;
    height: 250px;
}

@media (max-width: 768px) {
    .img-container {
        display: none;
    }

    .form-container {
        width: 100%;
        padding: 20px;
    }

    .image-banner {
        width: 100%;
    }

    .content-banner {
        background-color: #FFFFFF;
        gap: 5px;
    }
}

@keyframes fadeIn {
    0% {
        display: block;
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slidein {
    25% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(100px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes blursAnimation {
    25% {
        transform: translate(500px, -500px) rotate(35deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(500px, 500px) rotate(0deg);
        opacity: 1;
    }
    75% {
        transform: translate(600px, -700px) rotate(-15deg);
        opacity: 0.5;
    }
    100% {
        transform: translate(600px, 100px) rotate(0deg);
        opacity: 1;
    }
}

.blurs {
    flex: 1;
    width: 100%;
    height: 100vh;
}

.blurs > .blur {
    animation: 11s blursAnimation;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    z-index: -1;
}

.blueBlurOne {
    position: absolute;
    top: -500px;
    left: -500px;
    z-index: 1;
    animation: 10s float Infinite;
}

.purpleBlurOne {
    position: absolute;
    bottom: -300px;
    right: 0px;
    z-index: 1;
    animation: 10s float Infinite;
}

.blueBlurTwo {
    position: absolute;
    top: -100px;
    left: -100px;
    z-index: 1;
    animation: 10s float Infinite;
}

.purpleBlurTwo {
    position: absolute;
    bottom: -100px;
    right: 200px;
    z-index: 1;
    animation: 10s float Infinite;
}

.purpleBlurThree {
    position: absolute;
    bottom: -170px;
    left: -900px;
    z-index: 1;
    opacity: 0.5;
    animation: 10s float Infinite;
}

.info {
    display: flex;
    align-items: center;
    height: 100vh;
    margin-left: 20vh;
    z-index: 10;
}

.text {
    display: inline-block;
    color: white;
}

.title {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    color: white;
    z-index: 2;
}

.typing-container {
    height: 70px;
    margin-bottom: 16px;
}

.subtitle {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: white;
    z-index: 2;
}

@media only screen and (max-width: 890px) {
    .text {
        display: none;
    }

    .blurs {
        display: none;
    }
}

.tt-holder {
    color: rgb(239, 172, 39);
    font-weight: 500;
    font-size: 25px;
}

.tt {
    display: none;
}

.ttt::after {
    content: "\0020";
    animation: pulse 1s infinite;
    color: transparent;
    border-right: 3px solid black;
    margin-left: 4px;
}

@keyframes pulse {
    0% {
        border-right: 3px solid rgb(239, 172, 39);
    }
    50% {
        border-right: 3px solid rgb(239, 172, 39);
    }
    100% {
        border-right: 3px solid rgb(239, 172, 39);
    }
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #FFFFFF;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 575px) {
    .container {
        display: block;
        height: auto;
    }

    .login-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex: 1;
        background-color: #FFFFFF;
        z-index: 9999;
        border-radius: 0;
        height: auto;
    }
}

.form-check {
    margin: 20px 0 30px 0;
    text-align: right;
    color: #BCBCBC;
    cursor: pointer;
}

.form-check-input, .form-check-label {
    cursor: pointer;
}

