body {
    margin: 0;
    padding: 0;
    font-family: Prompt;
}

.login-container{
    height: 700px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-box{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 430px;
    height: 400px;
    border-radius: 30px;
}

.login-box .login-bg-img{
    position: absolute;
    width: 100%;
    z-index: -1;

}

.login-box .logo-round-box{
    display: flex;
    justify-content: center;
    top: -70px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(#0c5a2a 20%, #0a4118 70%);
    
}

.logo-round-ctn{
    position: absolute;
    width: 126px;
    height: 126px;
    background: linear-gradient(210deg,#ffffff 10%, #525252 80%);
    border-radius: 50%;
    top: -70px;
}

.login-box .logo-round-box img {
    position: absolute;
    top: 20px;
    max-height: 50%;
}

.login-box div{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

/* .login-box div:nth-child(-n+4) > * {
    margin: 10px 5px 10px 5px;
} */

.login-box div:nth-child(-n+4) > input{
    width: 250px;
    height: 20px;
    font-size: 16px;
    letter-spacing: 0.3px;
    color: #5c5c5c;
    outline: none;
    border: 0;
    padding: 8px;
    background-color: #d6d6d6;
    margin: 0;
    font-weight: 500;
}

.login-box div:nth-child(-n+4) > input{
    border: solid 0px rgba(226, 22, 15, 0.61);
}

.login-box div:nth-child(-n+4) > div{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: white;
}

.login-box div:nth-child(-n+4) > *{
    margin: 4px 0px 4px 0px;
}

.login-box div i{
    color: #5c5c5c;
    font-size: 14px;
}

.login-btn-ctn{
    display: flex;
    justify-content: flex-start;
    padding-top: 30px;
}

.login-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    width: 280px;
    height: 55px;
    background-color: #022511;
    color: rgb(231, 231, 231);
    cursor: pointer;
    margin-top: 30px;
}

.login-btn:hover{
    background-color: #043a1b;
}

.warning-desc{
    margin-top: 20px;
}

.warning-desc div {
    display: flex;
    justify-content: center;
    align-items: baseline;
    opacity: 0;
}

.warning-desc div p{
    margin: -4px 5px -4px 5px;
    color: #ec4949e8;
}

.warning-desc div:nth-child(1){
    font-size: 17px;
}



input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}