﻿
/* Main style goes here */

/* 
Theme Name: 
Theme Version: 1.0
Theme Colors:  Main(#0a1929), Sidebar on hover(rgba(99,102,241,0.1/1)), Span(rgba(103, 58, 183, 1)), Icon(#494b74), button(#6366f1), 
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
}

:focus {
    outline: none;
}

/* Theme color change */


body {
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    --primary-color: #1e1e2d;
    --secondary-color: #A64263;
    --secondary-rgba-color: rgb(0, 158, 247);
    --white-color: #ffffff;
    --gray-color: #F4F7F9;
    --gray2-color: #646477;
    --gray-bg-color: #f8f8f8;
    --dark-color: #000000;
    --main-bg-color: #F5F8FA;
    --login-main-color: #3F627E;
    --login-input-color: #0E3A5D;
    --login-ash-color: #aaaaaa;
    --login-input-border-focus-color: #D22131;
    --login-input-focus-color: rgba(14, 58, 93, .5);
    --login-input-checked-color: #A64263;
    --login-label-color: #4F6F88;
    --left-menu-color: #9D9DA6;
    --left-menu-border-color: #393945;
    --left-active-menu-bg: #2A2A3C;
    --left-toggle-btn-color: #a1a5b7;
    --box-shadow: 0px 0px 35px rgba(154, 161, 171, 0.15);
    --close-icon-box-shadow: 0 10px 25px rgb(0 0 0 / 30%);
    --size: 40px;
}

body.light-theme {
    --primary-color: #0E3A5D;
    --primary2-color: #1C2851;
    --primary3-color: #4F6F88;
    --secondary-color: #A64263;
    --white-color: #ffffff;
    --gray-color: #aaaaaa;
    --gray2-color: #8391a2;
    --gray3-color: #f8f8f8;
    --box-shadow: 0px 0px 35px rgba(154, 161, 171, 0.15);
}

body.dark-theme {
    --primary-color: #0a1929;
    --primary2-color: #333;
    --primary3-color: #555;
    --secondary-color: #A64263;
    --white-color: #fff;
    --dark-color: #000;
    --gray-color: #aaaaaa;
    --gray2-color: #8391a2;
    --gray3-color: #f8f8f8;
    --box-shadow: 0px 0px 35px rgba(154, 161, 171, 0.15);
}

.button {
    width: auto;
    height: 40px;
    line-height: 40px;
    background: var(--primary3-color);
    color: var(--white-color);
    border: medium none;
    border-radius: 60px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 0 0;
    outline: none;
    transition: all 0.4s ease 0s;
    letter-spacing: 0.5px;
}

.button:hover {
    filter: drop-shadow(0px 10px 30px var(--secondary-color));
    transition: all 0.3s ease 0s;
    background: var(--secondary-color);
}


.main-content-wrapper {
    display: flex;
}

.main-content {
    margin-left: 260px;
    width: calc(100% - 260px);
    transition: margin-left .5s;
    position: relative;
}

.main-content.hidden {
    margin-left: 75px;
    width: calc(100% - 75px);
}

.scrollarea {
    overflow-y: auto;
}

.lh-tight {
    line-height: 1.25;
}

.simplebar-scrollbar::before {
    background-color: var(--white-color);
}



/* Input form styles start  */

form .input-effect {
    color: var(--primary-color);
    width: 300px;
    box-sizing: border-box;
    letter-spacing: 1px;
    border: 2px solid var(--gray-color);
    padding: 7px 100px 7px 12px;
    background: transparent;
    height: 38px;
    transition: all 0.3s ease 0s;
    font-size: 14px;
    border-radius: 4px;
}

.input-effect:hover {
    border: 2px solid var(--primary3-color);
}

.input-effect:focus,
.input-effect.has-content {
    border: 2px solid var(--secondary-color);
}

.focus-input {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: 0 0;
    border-radius: 4px;
    color: var(--primary3-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;
}

@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
    }
}

form .input-label {
    position: absolute;
    left: 15px;
    width: auto;
    height: auto;
    top: 8px;
    color: var(--gray-color);
    background-color: transparent;
    z-index: -1;
    padding: 0;
    line-height: 1;
    letter-spacing: 0.5px;
    transition: all 0.3s ease 0s;
}

.input-effect:focus~.input-label,
.has-content.input-effect~.input-label {
    top: -6px;
    left: 15px;
    color: var(--primary-color);
    display: inline-block;
    width: auto;
    height: auto;
    z-index: 2;
    transition: all 0.3s ease 0s;
    opacity: 1;
    visibility: visible;
    padding: 2px 3px;
    background-color: var(--white-color);
}

label.input-label span {
    position: relative;
    font-size: 12px;
    transition: all 0.3s ease 0s;
}

.input-effect:focus~.input-label span,
.has-content.input-effect~.input-label span {
    font-size: 12px;
    transition: all 0.3s ease 0s;
}

.input-field span.extra {
    background: var(--white-color);
    color: transparent;
    user-select: none;
    position: absolute;
    left: 12px;
    top: 0%;
    line-height: 1;
    padding: 0 3px;
    font-size: 12px;
    transition: all 0.3s ease 0s;
    display: block;
    letter-spacing: 0.5px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.input-effect:focus~span.extra,
.has-content.input-effect~span.extra {
    opacity: 1;
    visibility: visible;
}

.input-effect::placeholder {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease 0s;
}

.input-effect:focus::placeholder,
.has-content.input-effect::placeholder {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0s;
}

/* Input form styles end  */


body#LoginBackgroudDiv {
    background-color: white;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/*Login Css here */
.login-content {
    width: 100%;
    height: 100vh;
    /*background-color: var(--gray-bg-color);*/
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.login-content-wrapper {
    display: flex;
    flex: 1;
}

.single-login-content {
    flex-basis: 50%;
}

.single-login-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.single-login-content.login-form-content {
    justify-content: center;
}



/* Login image styles */

.shadow {
    transition: all 0.3s linear 0s;
    animation: wave 3s linear infinite forwards;
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 9999;
}

.shadow.leftShadow {
    animation-delay: 300ms;
}

.shadow.middleShadow {
    animation-delay: 200ms;
}

.shadow.rightShadow {
    animation-delay: 150ms;
}

@keyframes wave {
    0% {
        opacity: 1;
        visibility: visible;
        transform: translateY(5px);
    }

    50% {
        transform: translateY(-5px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
    }
}

@-webkit-keyframes wave {

    0% {
        opacity: 1;
        visibility: visible;
        transform: translateY(5px);
    }

    50% {
        transform: translateY(-5px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
    }

}


.leaf {
    transition: all 0.3s linear 0s;
    opacity: 1;
    visibility: visible;
}

.leaf.leftLeaf {
    animation: leftShake 3s linear infinite alternate;
    animation-delay: 300ms;
}

.leaf.middleLeaf {
    animation: middleShake 3s linear infinite alternate;
    animation-delay: 300ms;
}

.leaf.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(-2px);
    }

}

@keyframes middleShake {

    0% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(1px) translateY(1px);
    }

    100% {
        transform: translateX(-1px) translateY(-1px);
    }

}

@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;
}


/* @keyframes hourClock {

    from {
        transform: rotateZ(0deg)
    }

    to {
        transform: rotateZ(360deg)
    }

}

@keyframes minuteClock {

    from {
        transform: rotateZ(0deg)
    }

    to {
        transform: rotateZ(360deg)
    }

} */




/* Login form styles  */

.login-form-content-wrapper {
    background-color: var(--white-color);
    /* background-image: linear-gradient(45deg, rgba(210,33,49,.5), rgba(14,58,93,.5) 50%, rgba(210,33,49,.5)); */
    border-radius: 30px;
    box-shadow: 0px 15px 35px rgb(14 58 93 / 20%);
    width: 360px;
    padding: 30px;
    z-index: 2;
}

/* .single-login-content.login-form-content {
    position: relative;
} */

.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.passwordField {
    margin-top: 30px;
}

.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;
    margin-bottom: 0;
    box-shadow: none;
}

.input-effect:hover {
    border: 2px solid var(--login-input-color);
    box-shadow: none;
}

input[type="password"].input-effect:focus,
input[type="text"].input-effect:focus,
.input-effect:focus,
.input-effect.has-content {
    border: 2px solid var(--login-input-border-focus-color);
    box-shadow: 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;
    line-height: inherit;
    height: inherit;
    display: block;
}

@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: 16px;
    color: var(--login-ash-color);
    background-color: transparent;
    z-index: -1;
    padding: 0;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    transition: all 0.3s ease 0s;
}

.input-effect:focus~.input-label, .has-content.input-effect~.input-label {
    top: -8px;
    left: 15px;
    color: var(--primary-color);
    display: inline-block;
    width: auto;
    height: auto;
    z-index: 2;
    transition: all 0.3s ease 0s;
    opacity: 1;
    visibility: visible;
    padding: 2px 3px;
    background-color: var(--white-color);
}

.passwordField {
    position: relative;
}

.forget-password {
    text-decoration: none;
    color: var(--gray2-color);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.4s ease 0s;
    position: absolute;
    top: -23px;
    right: 0;
}

.forget-password:hover {
    color: var(--secondary-color);
}

.form-check {
    margin-top: 15px;
    display: flex;
    align-items: center;
}


/* Change the white to any color */

input.input-effect:-webkit-autofill {
    font-size: 14px;
    /*border: 2px solid var(--login-ash-color);*/
    -webkit-text-fill-color: var(--login-input-color);
    box-shadow: 0 0 0px 1000px var(--white-color) inset;
    -webkit-box-shadow: 0 0 0px 1000px var(--white-color) inset;
    transition: background-color 5000s ease-in-out 0s, border 5000s ease-in-out 0s, outline 0.3s ease-in-out 0s;
}

input.input-effect:-webkit-autofill:hover {
    /*border: 2px solid var(--login-input-color);*/
    border: medium none;
    outline: 2px solid var(--login-input-color);
    box-shadow: 0 0 0px 1000px var(--white-color) inset;
    -webkit-box-shadow: 0 0 0px 1000px var(--white-color) inset;
    transition: background-color 5000s ease-in-out 0s, border 5000s ease-in-out 0s;
}

input[type="password"].input-effect:-webkit-autofill:focus,
input[type="text"].input-effect:-webkit-autofill:focus,
.input-effect:-webkit-autofill:focus,
.input-effect.has-content:-webkit-autofill,
.input-effect.has-content:-webkit-autofill:focus {
    /*border: 2px solid var(--login-input-border-focus-color) !important;*/
    border: medium none;
    outline: 2px solid var(--login-input-border-focus-color) !important;
    box-shadow: 0 0 0px 1000px var(--white-color) inset;
    -webkit-box-shadow: 0 0 0px 1000px var(--white-color) inset;
    transition: background-color 5000s ease-in-out 0s, border 5000s ease-in-out 0s;
}


/*input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: all 600000s 0s;
}
input[data-autocompleted] {
    background-color: #f00 !important;
}*/


/* Checkbox styles 1 */

/*
.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(--secondary-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);
}

*/


/* Checkbox styles start */

.checkbox-wrapper-5 .check {
    --size: 40px;

    position: relative;
    background: linear-gradient(90deg, #f19af3, #f099b5);
    line-height: 0;
    perspective: 400px;
    font-size: var(--size);
  }

  .checkbox-wrapper-5 .check input[type="checkbox"],
  .checkbox-wrapper-5 .check label,
  .checkbox-wrapper-5 .check label::before,
  .checkbox-wrapper-5 .check label::after,
  .checkbox-wrapper-5 .check {
    appearance: none;
    display: inline-block;
    border-radius: var(--size);
    border: 0;
    transition: .35s ease-in-out;
    box-sizing: border-box;
    cursor: pointer;
  }

  .checkbox-wrapper-5 .check label {
    width: calc(2.2 * var(--size));
    height: var(--size);
    background: #d7d7d7;
    overflow: hidden;
    margin-bottom: 0;
  }

  .checkbox-wrapper-5 .check input[type="checkbox"] {
    position: absolute;
    z-index: 1;
    width: calc(.8 * var(--size));
    height: calc(.8 * var(--size));
    top: calc(.1 * var(--size));
    left: calc(.1 * var(--size));
    background: linear-gradient(45deg, #dedede, #ffffff);
    box-shadow: 0 6px 7px rgba(0,0,0,0.3);
    outline: none;
    margin: 0;
  }

  
  .checkbox-wrapper-5 .check input[type="checkbox"]:checked {
    left: calc(1.3 * var(--size));
  }

  
  .checkbox-wrapper-5 .check input[type="checkbox"]:checked + label {
    background: transparent;
  }

  .checkbox-wrapper-5 .check label::before,
  .checkbox-wrapper-5 .check label::after {
    content: "· ·";
    position: absolute;
    overflow: hidden;
    left: 5px;
    top: 10px;
    height: var(--size);
    letter-spacing: calc(-0.04 * var(--size));
    color: #9b9b9b;
    font-family: "Times New Roman", serif;
    z-index: 2;
    font-size: calc(.6 * var(--size));
    border-radius: 0;
    transform-origin: 0 0 calc(-0.5 * var(--size));
    backface-visibility: hidden;
  }

  
  .checkbox-wrapper-5 .check label::after {
    content: "●";
    left: 12px;
    top: 25px;
    height: calc(.1 * var(--size));
    width: calc(.35 * var(--size));
    font-size: calc(.2 * var(--size));
    transform-origin: 0 0 calc(-0.4 * var(--size));
    overflow: visible;
    line-height: 0;
  }

  .checkbox-wrapper-5 .check input[type="checkbox"]:checked + label::before,
  .checkbox-wrapper-5 .check input[type="checkbox"]:checked + label::after {
    left: calc(1.55 * var(--size));
    top: calc(.4 * var(--size));
    line-height: calc(.1 * var(--size));
    transform: rotateY(360deg);
  }

  
  .checkbox-wrapper-5 .check input[type="checkbox"]:checked + label::after {
    height: calc(.16 * var(--size));
    top: calc(.55 * var(--size));
    left: calc(1.6 * var(--size));
    font-size: calc(.6 * var(--size));
    line-height: 0;
    overflow: hidden;
}

/* Checkbox styles end */

.rememberMeLabel {
    margin-left: 8px;
    font-size: 14px;
    cursor: pointer;
    color: var(--gray2-color);
    margin-bottom: 0;
}


.form-submit {
    margin-top: 25px;
    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: 100px !important;
    height: 100%;
    line-height: 100%;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: medium none;
    border-radius: 60px;
    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:hover {
    filter: drop-shadow(0px 5px 20px var(--secondary-color));
    transition: all 0.3s ease 0s;
    background-color: var(--secondary-color);
}

.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;
}

/* .coffeeWaves {
    transition: all 0.3s linear 0s;
}

.coffeeWave {
    transition: all 0.3s linear 0s;
    animation: wave 2.5s linear infinite forwards;
    opacity: 1;
    visibility: visible;
}

.coffeeWave.wave1 {
    animation-delay: 300ms;
}

.coffeeWave.wave2 {
    animation-delay: 200ms;
}

.coffeeWave.wave3 {
    animation-delay: 150ms;
}

@keyframes wave {
    0% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-15px);
        opacity: 0;
        visibility: hidden;
    }
}

@-webkit-keyframes wave {
    0% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-15px);
        opacity: 0;
        visibility: hidden;
    }
}

.laptop-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-8%) translateY(-50%);
}

.laptop-img img {
    width: 430px;
    height: 245px;
} */



.copyright-info {
    position: absolute;
    bottom: 30px;
    right: 40px;
}

.copyright-info a {
    font-style: italic;
    text-decoration: none;
    color: var(--secondary-color);
    /*text-transform: uppercase;*/
    font-weight: 750;
}

.copyright-info a img {
    width: 200px;
    height: 20px;
}

    .copyright-info a:hover {
        color: var(--secondary-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%;
    }

}