html {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Jura';
    font-size: 16px;
    /* background-image: linear-gradient(to right top, #c35b00, #fd8112);
    background-position: top left, top left; */
    background: linear-gradient(-45deg,#F8935C, #F8935C, #FACA68, #9CC997, #64B5B5, #6B9CCE, #6F6CCF, #C797C7, #EF83BD, #D55A61);
    background-size: 1000% 1000%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
      background-position: 0% 0%;
    }
    /* 25% {
      background-position: 100% 0%;
    } */
    50% {
        background-position: 100% 100%;
    }
    /* 75% {
        background-position: 0% 100%;
      } */
    100% {
      background-position: 0% 0%;
    }
  }

.shape{
    position: absolute;
    /* width: 500px;
    height: 700px; */
    width: 100%;
    height: 100%;
}

.shape .box1,
.shape .box2,
.shape .box3,
.shape .box4{
    position: absolute;
    border-radius: 50%;
    box-shadow: 0px 2px 30px #72320011;
}

.shape .box1{
    background: linear-gradient(to right, #db7407,#ffb144);
    width: 400px;
    height: 400px;
    left: 150px;
    top: 20px;
}

.shape .box2{
    background: linear-gradient(to right, #ff512f,#f09819);
    width: 400px;
    height: 400px;
    left: -100px;
    bottom: -100px;
}

.shape .box3{
    background: linear-gradient(to right, #db7407,#ffb144);
    width: 200px;
    height: 200px;
    left: 350px;
    bottom: 80px;
}

.shape .box4{
    background: linear-gradient(to right, #db7407,#ffb144);
    width: 800px;
    height: 800px;
    right: 0px;
    bottom: -450px;
}

.main-box{
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    justify-content: center;
    align-content: center;
    background-color: rgba(255,255,255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px #00000055;
    border: 2px solid rgba(255,255,255,0.1);
    width: 300px;
    height: 500px;
    padding: 50px;
    border-radius: 20px;
}

.logo {
    margin: 0 auto;
    display: block;
    background-color: transparent;
    background-image: url('../images/logo1.png');
    height: 150px;
    width: 150px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-size: cover;
    background-repeat: no-repeat;
}

.login-text {
    position: relative;
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 50px;
}

.email {
    position: relative;
    display: block;
}

.email label,
.password label{
    display: block;
    font-weight: 700;
    color: #000;
    padding-top: 20px;
    padding-bottom: 8px;
}

.email input,
.password input{
    font-family: 'Jura';
    display: block;
    height: 30px;
    width: 100%;
    background-color: rgba(255,255,255,0.4);
    border-radius: 3px;
    font-weight: 700;
    color: #000;
    padding: 0;
    border: 0px;
    padding-left: 10px;
}

::placeholder{
    color: #585858;
}

.remember{
    padding-top: 20px;
    font-size: 13px;
}

.login-button button{
    font-family: 'Jura';
    margin-top: 20px;
    height: 40px;
    display: block;
    width: 100%;
    border-radius: 5px;
    font-weight: 900;
    font-size: 15px;
    color: #080710;
    border: 0px;
    cursor: pointer;
    background: linear-gradient(-30deg,#F8935C, #F8935C, #FACA68, #9CC997, #64B5B5, #6B9CCE, #6F6CCF, #C797C7, #EF83BD, #D55A61);
    background-size: 1000% 1000%;
    animation: gradient 15s ease infinite;
}

.forgot{
    padding-top: 50px;
    padding-bottom: 50px;
}

.forgot a{
    font-size: 13px;
    color: #001d7d;
}

.error {
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: #ff512f;
    list-style: none;
}