body,
html {
    height: 100%;
    margin: 0;
    overflow-y: hidden;
    overflow-x: hidden;
}

.login-wrapper {
    min-height: 100vh;
    width: 100%;
    position: relative;
    background: linear-gradient(345deg, #F2A53C 0%, #F2A73D 30%, #F4BC44 60%, #FFD670 90%, #FFF1C2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.teal-square {
    position: absolute;
    width: 100vw;
    height: 100vh;
    left: 70%;
    background-color: #00a884;
}

.header-logos {
    position: absolute;
    top: 30px;
    right: 50px;
    z-index: 2;
    color: white;
    text-align: right;
}

.header-logos h1 {
    font-weight: 700;
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.header-logos p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.9;
}

.lion-watermark {
    position: fixed;
    left: -15%;
    width: 50%;
    z-index: 2;
    pointer-events: none;
}

@media (min-width: 876px) and (max-width: 1450px) {
    .teal-square {
        left: 50%;
    }
}

@media (min-width: 768px) and (max-width: 875px) {
    .teal-square {
        left: 40%;
    }
}


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

    .teal-square {
        rotate: 45deg;
        left: 50%;
        width: 200vw;
        height: 200vh;
    }
}

.sigae-text {
    position: absolute;
    bottom: 40px;
    right: 50px;
    text-align: right;
    color: white;
    z-index: 2;
}

.sigae-text h2 {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    line-height: 1;
}

.sigae-text p {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 300;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.form-control {
    height: 45px;
    border-radius: 4px;
    border: 1px solid #ced4da;
}

.btn-login {
    background-color: #f08e0e;
    border: none;
    color: white;
    width: 100%;
    height: 45px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-login:hover {
    background-color: #d67a00;
    color: white;
}

.input-group-text {
    background: transparent;
    border-left: none;
}

.border-right-0 {
    border-right: 0 !important;
}

.bg-white {
    background-color: white !important;
}

.teal-svg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    left: 60%;
    bottom: 0vh;
    z-index: 1;
}

.teal-svg svg {
    width: 40%;
    height: auto;
    display: block;
}

@media (max-width: 1525px) and (min-width: 1126px) {
    .teal-svg {
        left: 40%;
    }

    .teal-svg svg {
        width: 60%;
    }
}

@media (max-width: 1125px) and (min-width: 786px) {
    .teal-svg {
        left: 20%;
    }

    .teal-svg svg {
        width: 80%;
    }
}