* {
    margin: 0;
    padding: 0;
}
body {
    height: 100vh;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background-color: #232020;
}



#passwordRequirements {
    position: absolute;
    z-index: 100;
    background-color: #450447c9;
    left: 1%;
    backdrop-filter: blur(5px);
    padding: 10px;
    font-weight: bold;
    width: 91.5%;
    margin: auto;
    border-radius: 15px;
    display: none;
    direction: rtl;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 2s ease;
}
@keyframes delayshow{
0%{
opacity:0;
}
100%{
opacity:1;
}
}


#passwordRequirements.show{
display:block;
opacity:1;
animation:delayshow 2s forwards;
}





.info-p{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
background-color: #280129b5;
    backdrop-filter: blur(5px);
    padding: 5px 5px 5px 0;
    border-radius: 8px;
margin-bottom: 3px;
}
i.fas.fa-close {
    cursor: pointer;
}
.info {
    max-width: 50px;
    margin: auto;
margin-top: -25px;  
}
img.info-pic {
    max-width: 30px;
}










.inFormBackground {
    margin: 0rem 2rem;
}
.inFormBackground,
.inLoginForm {
    width: 13rem;
    height: 30rem;
    max-width: 300px;
    position: relative;
}
.circle {
    width: 50%;
    height: 30%;
    position: absolute;
    border-radius: 50%;
}
.circle:first-child {
    left: -35%;
    top: -12%;
    background: radial-gradient(circle, #1a7cb1, #097acd, #098fd9);
}
.circle:nth-child(2) {
    right: -35%;
    bottom: -10%;
    background: linear-gradient(#ef510a, #eb7802);
}
.inLoginForm form {
    top: 50%;
    left: 50%;
    width: 15rem;
    height: 24rem;
    max-width: 300rem;
    position: absolute;
    padding: 50px 35px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.13);
}
form * {
    border: none;
    outline: none;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}
.title {
    font-size: 32px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
}
.inputGroup label {
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}
.inputGroup input {
    width: 100%;
    height: 50px;
    display: block;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.07);
}
::placeholder {
    color: #e5e5e5;
}
.submitForm {
    width: 100%;
    z-index: 1;
    margin-top: 30px;
    color: #080710;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    background: #fff;
}
.submitForm::before {
    content: "";
    top: 0%;
    left: -100%;
    z-index: -1;
    width: 100%;
    height: 100%;
    color: #fff;
    border-radius: 5px;
    position: absolute;
    transition: left 0.4s, color 0.4s;
    background-color: #202020;
}
.submitForm:hover {
    color: #fff;
}
.submitForm:hover::before {
    left: 0%;
}
.social {
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}
.social div {
    width: 3rem;
    height: 3rem;
    display: flex;
    cursor: pointer;
    color: #eaf0fb;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.27);
}
.social div:hover {
    background-color: rgba(255, 255, 255, 0.47);
}
.social .fb {
    margin-left: 25px;
}
.social .tw {
    margin-left: 25px;
}








.inputGroup {
    position: relative;
    margin-bottom: 20px;
}

.floating-label {
    position: absolute;
    top: -15px;
    left: 15px;
    color: #aaa;
    transition: all 0.2s ease;
    pointer-events: none;
    font-size: 16px;
}

input {
    width: 10%;
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

input:focus {
    border-color: #333;

}

input:focus ~ .floating-label,
input:not(:placeholder-shown) ~ .floating-label {
    top: -38px;
    left: 10px;
    font-size: 12px;
    color: white;
background: #4d4b4b;
display: block;
}

input.check-box.is-not-checked {
    background: #ffffff;
cursor: pointer;
}
input[type="button"]:hover {
    box-shadow: inset 1px 1px 1px #a5a5a5, inset -1px -1px 1px #fff;
}
.is-checked {
    color: #ef6a05;
    font-weight: bold;
}

.is-not-checked {
  color: transparent;
}
i#eye {
    cursor: pointer;
}





label.floating-label {
    display: none;
}

.inputGroup i {
    top: 15px;
    position: absolute;
    left: 5px;
}

.inputGroup input {
 padding-left:30px;
}
input:focus::placeholder {
opacity:0;
}














@media(max-height:600px){
 .inputGroup i {
    top: 1vh;
    position: absolute;
    left: 5px;
}


.inLoginForm form {
    top: 40%;
    height: auto;
}
.inputGroup input {
    width: 100%;
    height: auto;
    display: block;
            padding: 5px 0 5px 0;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.07);
text-align: center;
}
.inputGroup label {
      display: none;
    
    font-size: 12px;
    font-weight: 500;
        margin-left: 10px;
}
.submitForm {
    width: 100%;
    z-index: 1;
    margin-top: 2px;
    color: #080710;
    padding: 10px 0;
    font-size: 10px;
    font-weight: bolder;
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    background: #fff;
    height: auto;
}
    .circle:nth-child(2) {
        right: -35%;
        bottom: 12%;
        background: linear-gradient(#ef510a, #eb7802);
        width: 42%;
        height: 28vh;
    }
body {
    height: 100vh;
    display: flex;
    overflow: scroll;
    align-items: center;
    justify-content: center;
    background-color: #232020;
    padding: 117px 0 50px 0;
}
}
#remember{
  width:20px;
  height: 20px;
  padding:5px;
  box-sizing: border-box;
  border:1px solid #ccc;
  border-radius:5px;
  font-size: 16px;
  outline:none;
  
}

input[type="checkbox"]:checked {
  accent-color: #ef6a05;
   font-weight: bold;
}
