*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    overflow-y: hidden;
    overflow-x: hidden;    
}

.login-container-main{
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;    
}

.login-container-center{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    height: 100%;
    width: 95%;
    max-width: 400px;
    background-color: #fff;    
}

.block-1{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 250px;
    margin-bottom: 1rem;  
    padding-left: 0.5rem;    
    padding-right: 0.5rem;    
    
    overflow: hidden;
}


.block-2{
    position: absolute;
    top: 0%;
    left: 0%;
    /*transform:translate(0%, -50%);*/

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 250px;
    width: 100%;
    z-index: 2;   
    background-color: #fff;
    transition: all 1s ease;
    
    padding-left: 0.5rem;    
    padding-right: 0.5rem;    
}

.display-hidden-block_2{
    transform: translate(-100vw,0%);
    transition: all 1s ease;
}

.login-captcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    
    height: 100px;
    width: 100%;    
} 

