@import url(style.css);
html,
body{
    height: 100%;
    padding: 0;
    margin: 0;

}

*{    
    color: #333;
    box-sizing: border-box;
}
.page-wrapper{
    position: relative;
}
.signInContainer{
    background-color: #efefee;
    padding-top: 10rem;
    height: 75vh;
    display: flex;
    align-content: center;
    justify-content: center;
}

.column{
    background-color: #fff;
    min-height: 300px;
    max-height: 100%;
    width: 450px;
    box-shadow: rgba(0, 0, 0, 0.1)0 1px;
    padding: 20px 35px;
    box-sizing: border-box;
    overflow-y: auto ;
}

.column form {
    display: flex;
    flex-direction: column;

}

.column form input[type='text'],
.column form input[type='email'],
.column form input[type='password']{
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: 1px solid #dedede;
}

.column form input[type='submit']{
    background-color: #4285f4;
    color: #fff;
    height: 36px;
    width: 88px;
    border: none;
    border-radius: 3px;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    display: block;
}

.formControls{
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(2, 1fr);
   
}

.column  button{
    background-color: #4285f4;
    color: #fff;
    height: 36px;
    width: 88px;
    border: none;
    border-radius: 3px;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    display: block;
}

.column .header{
    padding: 20px 0;
}

.column h3{
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin: 0;
    padding-top: 16px;
    color: #000;
}

.column .header span{
    font-size: 14px;
}

.column .header img{
    width: 100px;
}

.signInMessage{
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.isActive{
    color: crimson;
}
.footer{
    position: fixed;
    bottom: 0;
    width: 100vw;
}