.login-content {
    width: 100%;
    height: 100vh;
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.login-content-wrapper {
    display: flex;
    align-items: center;
    height: inherit;
}

.single-login-content {
    flex-basis: 50%;
}

.single-login-content {
    display: flex;
    align-items: center;
    justify-content: center;
}




/* Login image styles */

#rightVapor {
    animation: wave 3s linear infinite;
    transition: all 0.3s ease 0s;
}

#leftVapor {
    animation: wave2 4s linear infinite;
    transition: all 0.3s ease 0s;
}

#downVapor {
    animation: wave3 3s linear infinite;
    animation-delay: 2s;
    transition: all 0.3s ease 0s;
}


@keyframes wave {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-15px);
        opacity: 0;
    }
}

@-webkit-keyframes wave {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-15px);
        opacity: 0;
    }

}
@keyframes wave2 {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-15px);
        opacity: 0;
    }
}

@-webkit-keyframes wave2 {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-15px);
        opacity: 0;
    }

}

@keyframes wave3 {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-15px);
        opacity: 0;
    }
}

@-webkit-keyframes wave3 {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-15px);
        opacity: 0;
    }

}


#leftLeaf,
#middleLea,
#rightLeaf {
    transition: all 0.3s linear 0s;
    opacity: 1;
    visibility: visible;
}

#leftLeaf {
    animation: leftShake 3s linear infinite alternate;
    animation-delay: 300ms;
}

#middleLeaf {
    animation: middleShake 3s linear infinite alternate;
    animation-delay: 300ms;
}

#rightLeaf {
    animation: rightShake 3s linear infinite alternate;
    animation-delay: 200ms;
    transform-style: preserve-3d;
}

@keyframes leftShake {

    0% {
        transform: translateX(0px) translateY(0px);
    }

    50% {
        transform: translateX(2px) translateY(2px);
    }

    100% {
        transform: translateX(-2px) translateY(-1px);
    }

}

@keyframes middleShake {

    0% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(2px) translateY(2px);
    }

    100% {
        transform: translateX(-2px) translateY(-2px);
    }

}

@keyframes rightShake {

    0% {
        transform: translateX(0px) translateY(0px);
    }

    50% {
        transform: translateX(1px) translateY(3px);
    }

    100% {
        transform: translateX(-1px) translateY(-3px);
    }

}



.time {
    transition: all 0.3s linear 0s;
    position: relative;
    z-index: 9999;
    transform-style: preserve-3d;
}

.time.hourTime {
    animation: hourClock 60s infinite linear;
    transform-box: fill-box;
    transform-origin: top;
}

.time.minuteTime {
    animation: minuteClock 6s infinite linear;
    transform-box: fill-box;
    transform-origin: center;
}

.watchCenter {
    position: relative;
}

.watchTime {
    position: absolute;
}

#bubbleDot {
    animation: dot 5s linear infinite;
    transition-delay: 500ms;
    transform-box: fill-box; 
    transform-origin: center;
    transition: all 0.5s ease 0s;
}

@keyframes dot {
    0% {
        transform: translateY(5px) scale(.8);
    }

    100% {
        transform: translateY(-15px) scale(1.2);
        opacity: 0;
    }
}


#iconBubbles{
    animation: bubble 4s linear infinite;
    transform-origin: center;
    transform-box: fill-box;
    transition: all 0.5s ease 0s;
}

@keyframes bubble {
    0% {
        transform: translateY(2px);
        opacity: 1;
    }
    100% {
        transform: translateY(-15px);
        opacity: 0;
    }
}


/* Login form styles  */

.login-form-content-wrapper {
	background: transparent;
	border-radius: 10px;
	box-shadow: 0 20px 40px rgb(0 0 0 / 10%);
	width: 380px;
	padding: 35px;
	z-index: 2;
	transition: all 0.5s ease 0s;
}

.login-form-content h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    padding-bottom: 20px;
    color: var(--primary-color);
}

.input-field {
    position: relative;
    transition: all 0.3s ease 0s;
}

.input-field:nth-of-type(n+2) {
    margin-top: 35px;
}

.input-field input {
    color: var(--login-input-color);
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px;
    border: 2px solid var(--login-ash-color);
    padding: 7px 14px;
    background: transparent;
    height: 46px;
    transition: all 0.3s ease 0s;
    font-size: 14px;
    border-radius: 4px;
}

.input-effect:hover {
    border-color: var(--login-input-color);
}

.input-effect:focus,
.input-effect:focus-visible,
.input-effect.has-content {
    border-color: var(--login-input-border-focus-color);
    box-shadow: none;
    outline: none;
}

.focus-input {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: 0 0;
    color: var(--login-input-focus-color);
}

.input-effect:focus+.focus-input {
    -webkit-animation: anim-shadow .5s ease-in-out forwards;
    animation: anim-shadow .5s ease-in-out forwards;
}

.has-content.input-effect+.focus-input {
    display: none;
}

label.input-label span {
    font-size: 14px;
    letter-spacing: 0.5px;
}

@keyframes anim-shadow {
    to {
        box-shadow: 0 0 70px 25px;
        opacity: 0
    }
}

@-webkit-keyframes anim-shadow {
    to {
        box-shadow: 0 0 70px 25px;
        opacity: 0
    }
}

/* .input-field label {
    position: absolute;
    left: 15px;
    width: auto;
    height: auto;
    top: 13px;
    color: var(--login-ash-color);
    background-color: transparent;
    z-index: -1;
    padding: 0;
    letter-spacing: 0.5px;
    transition: all 0.3s ease 0s;
}

.input-effect:focus~label,
.has-content.input-effect~label {
    top: -8px;
    left: 14px;
    font-size: 12px;
    color: var(--login-input-color);
    display: inline-block;
    width: auto;
    height: auto;
    background-color: var(--gray-bg-color);
    z-index: 1;
    padding: 1px;
    transition: all 0.3s ease 0s;
} */

.passwordField {
    position: relative;
}

.forget-password {
	text-decoration: underline;
	color: var(--gray2-color);
	font-size: 12px;
	font-weight: 500;
	transition: all 0.4s ease 0s;
	position: absolute;
	top: 7px;
	right: 0;
	letter-spacing: 0.5px;
}

.forget-password:hover {
    color: var(--primary-color);
}

.form-check {
    margin-top: 15px;
    display: flex;
    align-items: center;
    padding-left: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 14px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #999;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider.round {
    border-radius: 34px;
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--secondary-color);
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 0px;
    bottom: -3px;
    background-color: var(--white-color);
    -webkit-transition: .4s;
    box-shadow: 0 2px 1px -1px #0003, 0 1px 1px #00000024, 0 1px 3px #0000001f;
    transition: .4s;
}

.slider.round:before {
    border-radius: 50%;
}

input:checked+.slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
}

.rememberMeLabel {
    margin-left: 7px;
    font-size: 14px;
    cursor: pointer;
    color: var(--gray2-color);
}


.form-submit {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 2px solid var( --login-input-color); */
    border-radius: 60px;
    position: relative;
    display: block;
    height: 40px;
    /* overflow: hidden; */
}

.login-button {
    width: 100%;
    height: 100%;
    line-height: 100%;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: medium none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 0;
    outline: none;
    transition: all 0.4s ease 0s;
    letter-spacing: 1px;
    position: absolute;
    left: 0;
    transform: translateX(0);
}

.login-button.active {
    left: 100%;
    transform: translateX(-100%);
}

.single-anim {
    position: absolute;
}

.single-anim.triangle {
    left: 35%;
    top: 15%;
}

.single-anim.solid {
    right: 10%;
    top: 20%;
}

.single-anim.ring {
    bottom: 10%;
    left: 10%;
}

.single-anim.circle {
    right: 10%;
    bottom: 15%;
}

.single-img {
    transform-origin: center;
    transform-box: fill-box;
}

.triangle .single-img {
    animation: rotate 5s linear infinite;
    transform-origin: top;
}

.solid .single-img {
    animation: rotate 4s linear infinite;
}

.ring .single-img {
    animation: upper 3s linear infinite;
}

.circle .single-img {
    animation: rotate 4s linear infinite;
    transform-origin: bottom;
}

@keyframes rotate {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

@keyframes upper {
    0% {
        transform: scale(.7);
        opacity: 1
    }

    to {
        transform: scale(1.5);
        opacity: 0
    }
}


.banner-advertise {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.banner-advertise.single-banner img {
    width: 100%;
    height: 150px;
}

.banner-advertise.multiple-banner .banner-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, 30px);
}

.banner-advertise.multiple-banner img {
    width: 30px;
    height: 50px;
}


.main-bg {
    background-image: url(../img/login/circle-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.main-bg .coffee-img svg {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateX(-10%) translateY(-50%);
    transition: all 0.3s linear 0s;
}


.copyright-info {
    position: absolute;
    bottom: 30px;
    right: 40px;
}

.copyright-info a {
    font-style: italic;
    text-decoration: none;
    color: var(--white-color);
    text-transform: uppercase;
}

.copyright-info a img {
    width: 200px;
    height: 20px;
}

.copyright-info a:hover {
    color: var(--white-color);
}


/* Clock styles  */

#clock-hour-arrow {
    animation: clock 86400s infinite linear;
    transform-box: fill-box;
    transform-origin: bottom;
}

#clock-minute-arrow {
    animation: clock2 3600s infinite linear;
    transform-box: fill-box;
    transform-origin: bottom;
}

#clock-second-arrow {
    animation: clock3 60s infinite linear;
    transform-box: fill-box;
    transform-origin: bottom;
}

@keyframes clock {
    from {
        transform: rotateZ(-90deg);
    }

    to {
        transform: rotateZ(360deg);
    }
}

@keyframes clock2 {
    from {
        transform: rotateZ(0deg);
    }

    to {
        transform: rotateZ(360deg);
    }
}

@keyframes clock3 {
    from {
        transform: rotateZ(0deg);
    }

    to {
        transform: rotateZ(360deg);
    }
}


/* Responsive styles */

@media (max-width: 575.98px) {

    .single-login-content.login-form-content {
        width: 100%;
    }

    .single-anim.triangle {
        left: 50%;
        top: 8%;
        transform: translateX(-50%);
    }

    .single-anim.circle {
        right: 8%;
        bottom: 10%;
    }

    .single-anim.ring {
        bottom: 5%;
        left: 8%;
    }

    .single-anim.solid {
        right: 10%;
        top: 45%;
    }

    .circle .single-img {
        width: 33px;
        height: 33px;
    }

    .login-form-content-wrapper {
        padding: 25px;
        margin: 0 auto;
        width: 85%;
    }

    .input-field:nth-of-type(n+2) {
        margin-top: 35px;
    }

    .form-check {
        margin-top: 12px;
    }

    .form-submit {
        margin-top: 20px;
        height: 36px;
    }

    .login-content {
        height: 100%;
    }

    .login-content-wrapper {
        display: flex;
        flex: 1;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .single-login-content {
        flex-basis: auto;
        padding: 50px 0;
        text-align: center;
    }

    .single-login-content:first-child {
        padding-top: 0;
    }

    .login-bg-content svg {
        width: 80%;
        height: 80%;
    }

    .login-form-content h1 {
        text-align: left;
        font-size: 22px;
        padding-bottom: 15px;
    }

    .login-button {
        width: 90px;
        font-size: 16px;
        letter-spacing: 1px;
    }

}

@media (min-width: 576px) and (max-width: 767.98px) {

    .single-anim.triangle {
        left: 10%;
        top: 10%;
    }

    .single-anim.circle {
        right: 8%;
        bottom: 10%;
    }

    .single-anim.ring {
        bottom: 5%;
        left: 7%;
    }

    .login-form-content-wrapper {
        padding: 25px;
    }

    .input-field:nth-of-type(n+2) {
        margin-top: 35px;
    }

    .form-check {
        margin-top: 12px;
    }

    .form-submit {
        margin-top: 20px;
        height: 36px;
    }

    .login-content {
        height: 100%;
    }

    .login-content-wrapper {
        display: flex;
        flex: 1;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .single-login-content {
        flex-basis: auto;
        padding: 50px 0;
        text-align: center;
    }

    .single-login-content.login-form-content {
        width: 100%;
    }

    .single-login-content:first-child {
        padding-top: 0;
    }

    .login-bg-content svg {
        width: 80%;
        height: 80%;
    }

    .login-form-content h1 {
        text-align: left;
        font-size: 22px;
        padding-bottom: 15px;
    }

    .login-button {
        width: 90px;
        font-size: 16px;
        letter-spacing: 1px;
    }

}

@media (min-width: 768px) and (max-width: 991.98px) {

    .login-content {
        height: 100%;
    }

    .login-content-wrapper {
        display: flex;
        flex: 1;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .single-login-content {
        flex-basis: auto;
        padding: 50px 0;
        text-align: center;
    }

    .single-login-content:first-child {
        padding-top: 0;
    }

    .login-bg-content svg {
        width: 80%;
        height: 80%;
    }

    .login-form-content h1 {
        text-align: left;
    }


    .login-form input {
        height: 45px;
    }

    .input-effect:focus~label,
    .has-content.input-effect~label {
        top: -7px;
    }

    .single-anim.triangle {
        left: 70px;
        top: 170px;
    }

    .single-anim.solid {
        right: 100px;
        top: 100px;
    }

    .single-anim.ring {
        bottom: 150px;
        left: 50px;
    }

    .copyright-info a img {
        width: 150px;
        height: 15px;
    }

}

@media (min-width: 992px) and (max-width: 1199.98px) {

    .login-form-content h1 {
        text-align: left;
    }

    .login-bg-content svg {
        width: 85%;
    }

    .single-login-content {
        justify-content: center;
        text-align: center;
        flex: 1;
    }

    .login-form input {
        height: 45px;
    }

    .input-effect:focus~label,
    .has-content.input-effect~label {
        top: -7px;
    }

    .copyright-info a img {
        width: 150px;
        height: 15px;
    }

}

@media (min-width: 1200px) and (max-width: 1365.98px) {

    .single-anim.triangle {
        left: 40%;
        top: 10%;
    }

    .single-anim.solid {
        right: 10%;
        top: 15%;
    }

    .single-anim.circle {
        right: 10%;
        bottom: 10%;
    }

    .copyright-info a img {
        width: 150px;
        height: 15px;
    }

}

@media (min-width: 1366px) and (max-width: 1439.98px) {}

@media (min-width: 1440px) and (max-width: 1919.98px) {

    .login-form-content {
        right: 50px;
        top: 145px;
    }

    .single-anim.triangle {
        left: 35%;
        top: 12%;
    }

}


@media (min-width: 1200px) and (max-width: 1919.98px) {

    .login-content-wrapper {
        position: relative;
        justify-content: space-evenly;
    }

    .single-login-content {
        flex-basis: auto;
    }

}

@media (max-width: 389.98px) {

    .login-form-content-wrapper {
        padding: 25px;
        margin: 0 auto;
        width: 90%;
    }

}