* {
    margin: 0;
    padding: 0;
}

.container{
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
}

.headers{
    margin-top: 200px;
}

.headers__container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main__logo{
    max-width: 350px;
    max-height: 100px;
    margin-left: 350px;
}


.headers-h1{
    font-size: 55px;
    font-family: 'Lato', sans-serif;
}

.headers__span{
    color: red;
}

.login__container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.login__info{
    align-items: center;
}

.login__input{
    min-height: 20px;
    background-color: #F0F0F0;
    border: 1px solid lightgrey;
}

.login__info-text{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.login__info-div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
}

.login__info-div:not(:first-child){
    margin-top: 15px;
}

.login__info-header{
    font-weight: normal;
}

.login__input-user{
    min-width: 200px;
}

.login__input-password{
    margin-right: 47px;
    min-width: 200px;
}

.login__input-otp{
    max-width: 100px;
    margin-right: 100px;
}

.login__info-header{
    padding-right: 15px;
}

.main__button{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    transition: 1s;
}

button{
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    text-transform: uppercase;
    color: #FF4500;
    letter-spacing: 4px;
    text-decoration: none;
    font-size: 35px;
    overflow: hidden;
    transition: 0.2s;
    background-color: white;
    border: none;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
}

button:hover{
    color: white;
    background-color: #FF4500;
    box-shadow: 0 0 10px #FF4500, 0 0 40px #FF4500, 0 0 80px #FF4500;
    transition-delay: 1s;
}

button span{
    position: absolute;
    display: block;
}

button span:nth-child(1){
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF4500);
}

button:hover span:nth-child(1){
    left: 100%;
    transition: 1s;
}

button span:nth-child(2){
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #FF4500);
}

button:hover span:nth-child(2){
    top: 100%;
    transition: 1s;
    transition-delay: 0.25s;
}

button span:nth-child(3){
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #FF4500);
}

button:hover span:nth-child(3){
    right: 100%;
    transition: 1s;
    transition-delay: 0.5s;
}

button span:nth-child(4){
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #FF4500);
}

button:hover span:nth-child(4){
    bottom: 100%;
    transition: 1s;
    transition-delay: 0.75s;
}






