@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,600&display=swap');

* {
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    font-size: 18px;
    color: #434343;
    background-color: #eaeaea;
    /*background-color: #F5F5F5;*/
}

img {
    object-fit: cover;
    object-position: 50% 50%;
    vertical-align: middle;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    opacity: 0.7;
}

::selection {
    background: #378B76;
    color: #fff;
}

::-moz-selection {
    background: #378B76;
    color: #fff;
}

.grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

.wrapper {
    width: 100%;
    height: 100vh;
}

.layoutGrid1 {
    width: 50%;
    height: 100vh;
    -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
}

.layoutGrid2 {
    width: 50%;
    height: 100vh;
    padding: 0 20px;
    padding-right: 100px;
}

.formWrap {
    height: 95vh;
    justify-content: center;
}

.brandLogo {
    width: 100px;
    text-align: center;
    margin: auto;
}

.formWrap .title {
    font-weight: 200;
    font-size: 43px;
    letter-spacing: -2px;
    text-align: center;
    margin: 12px auto;
}

.formWrap .title span {
    font-weight: 400;
    display: block;
    font-size: 36px;
    margin-top: -8px;
}

.formWrap input {
    width: 100%;
    border: 1px solid #CECECE;
    padding: 8px 15px;
    margin-bottom: 10px;
    border-radius: 50px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0px;
    color: #434343;
    transition: 0.3s ease;
}

.formWrap input::placeholder {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 14px;
    letter-spacing: 2px;
    color: #858585;
}

.form {
    width: 360px;
    transition: 0.5s ease;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.imgProgress {
    opacity: 0;
    position: absolute;
    pointer-events: none;
    transition: 2s ease;
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
}

form {
    background-color: #fff;
    padding: 25px 25px 20px 25px;
    border-radius: 10px;
    opacity: 1;
}

input.checkbox {
    width: 20px;
    padding: 0;
    margin-bottom: 0;
    margin: 0;
    vertical-align: middle;
}

a.btn-login {
    background-color: #EE7B5A;
    color: #fff;
    border-radius: 50px;
    border: none;
    font-size: 14px;
    font-weight: 400;
    padding: 3px 20px 6px 20px;
    letter-spacing: 1px;
    /* float: right; */
    cursor: pointer;
    transition: 0.5s ease;
}

a.btn-login:hover {
    opacity: 0.8;
}

#remember-me {
    font-size: 12px;
    font-weight: 400;
    color: #434343;
    letter-spacing: 1px;
}

.copyright {
    text-align: center;
    margin: auto;
    width: 100%;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
}

.copyrightImg {
    text-align: center;
    margin: 0 auto 5px auto;
    width: 88px;
}

/* page transition */
.fade-in {
    opacity:0;  /* make things invisible upon start */
    -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;
  
    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
  
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;

    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    animation-delay: 0.7s;
  }

  @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
/* page transition */

/* page transition */
.fade-in2 {
    opacity:0;  /* make things invisible upon start */
    -webkit-animation:fadeIn2 ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn2 ease-in 1;
    animation:fadeIn2 ease-in 1;
  
    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
  
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;

    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    animation-delay: 1.5s;
  }

  @-webkit-keyframes fadeIn2 { from { opacity:0; } to { opacity:1; } }
  @-moz-keyframes fadeIn2 { from { opacity:0; } to { opacity:1; } }
  @keyframes fadeIn2 { from { opacity:0; } to { opacity:1; } }
/* page transition */


.move-up {
    opacity: 0;
    -webkit-animation: slide-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: slide-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            -webkit-animation-delay: 1.2s;
            -moz-animation-delay: 1.2s;
            animation-delay: 1.2s;
}

 @-webkit-keyframes slide-top {
    0% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
              opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
              opacity: 1;
    }
  }
  @keyframes slide-top {
    0% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
              opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
              opacity: 1;
    }
  }

  .round {
    position: relative;
    justify-content: space-between;
  }
  
  .round label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 15px;
    left: 0;
    position: absolute;
    top: 6px;
    width: 15px;
  }
  
  .round label:after {
    /* border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 7px;
    opacity: 0;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 12px; */
  }
  
  .round input[type="checkbox"] {
    visibility: hidden;
  }
  
  .round input[type="checkbox"]:checked + label {
    background-color: #378B76;
    border-color: #378B76;
  }
  
  .round input[type="checkbox"]:checked + label:after {
    opacity: 1;
  }

  .container-check {
    font-size: 12px;
    font-weight: 400;
    color: #434343;
    letter-spacing: 1px;
    margin-top: 10px;
  }

  .round-wrap #checkbox {
      width: 15px;
      margin: 0 5px 0 0;
  }

  .element-show {
    opacity: 1 !important;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  .element-hide {
    opacity: 0 !important;
    -webkit-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
  }

/*s forgot pass style*/
.wrongPass {
    text-align: center;
    font-size: 12px;
    margin-top: 15px;
    line-height: 1.4;
    color: #ca1000;
    letter-spacing: 1px;
    opacity: 0;
}

.wrongPass span {
    font-weight: 700;
}

.wrongInput {
    border: 1px solid #ca1000 !important;
}
.scale-up-center {
    -webkit-animation: scale-up-center 0.5s cubic-bezier(0.680, -0.550, 0.265, 1.550) both;
            animation: scale-up-center 0.5s cubic-bezier(0.680, -0.550, 0.265, 1.550) both;
}
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
            opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1;
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
            opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1;
  }
}
.shake-horizontal {
    -webkit-animation: shake-horizontal 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
            animation: shake-horizontal 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}
@-webkit-keyframes shake-horizontal {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}
@keyframes shake-horizontal {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}

/*e forgot pass style*/

@media (max-width: 1100px) {
    .layoutGrid1 {
        -webkit-clip-path: none;
        clip-path: none;
    }
    .layoutGrid2 {
        width: 50%;
        height: 100vh;
        padding: 0 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    .wrapper {
        flex-direction: column;
    }
    .layoutGrid1 {
        display: none;
    }
    .layoutGrid2 {
        width: 100%;
        padding: 0 10px;
    }
    .formWrap .title {
        font-size: 22px;
        letter-spacing: -1px;
    }
    .formWrap .title span {
        font-size: 36px;
        margin-top: -5px;
    }
    form {
        background-color: #fff;
        padding: 20px 12px;
        border-radius: 10px;
    }
    .copyright {
        font-size: 8px;
    }
    .copyrightImg {
        text-align: center;
        margin: 0 auto 5px auto;
        width: 60px;
    }
    .formWrap {
        height: 92vh;
    }
    .formWrap input {
        padding: 7px 10px;
        margin-bottom: 8px;
        font-size: 10px;
    }
    .formWrap input::placeholder {
        padding: 7px 10px;
        margin-bottom: 8px;
        font-size: 10px;
    }
    #remember-me {
        font-size: 10px;
    }
    input#UserRememberMe {
        margin-bottom: 0px;
    }
    a.btn-login {
        font-size: 12px;
    }
    .brandLogo {
        width: 80px;
    }
    .round-wrap #checkbox {
        height: 17px;
    }
}  