*{
    outline:none;
    max-width:100%;
    box-sizing:border-box;
    font-family:'Helvetica', Helvetica Neue, Arial, sans-serif;
}

body{
    margin:0;
    text-align:center;
}

.form{
    margin-top:80px;
    padding:50px;
    display:inline-block;
    border:1px solid #eaeaea;
    border-radius:15px;
    width:480px;
}

.logo img{
    width:80px;
}

.logo{
    margin-top:-20px;
    margin-bottom:40px;
}
.col{
    margin:15px 0;
}

input{
    width:100%;
    padding:13px;
    min-height: 64px;
    line-height: 24px; 
    padding-bottom: 8px;
    padding-left: 12px;
    padding-right: 12px;
    border: 0.0625rem solid #cfd3d8;
    background-color: #fff;
    text-overflow: ellipsis;
    font-style: normal;
    font-size:1em;
    border-radius:5px;
    
}

button{
    width:100%;
    background:#0551b5;
    border:none;
    padding:15px;
    border-radius:50px;
    color:white;
    font-size:1em;
}

.rgst button{
    background:white;
    color:black;
    border:1.6px solid black;
}

.or{
    position:relative;
    margin:40px 0;
    display:flex;
    align-items:center;
    justify-content:center;
}

.line{
    border:1px solid #e0e0e0;
    border-bottom:none;
    width:100%;
}

.or span{
    position:absolute;
    top:-13px;
    background:white;
    color:gray;
    padding:6px 10px;
}


span.link{
    text-align:left;
    display:block;
    padding:13px 0;
    font-weight:bold;
    color:#0070E0;
}

footer{
    margin:60px 0;
    font-size:0.7em;
}

footer span{
    color:#4e4e4e;
    margin:0 10px;
}


@media (max-width:800px){
    .form{border:none; padding:20px; margin-top:20px;}
}


.loader{
    background:#ffffffe8 url('loading.gif');
    background-repeat:no-repeat;
    background-position:center;
    background-size:40px;
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    display:none;
}

.errorbox{
    border:1px solid #c72e2e;
    background:#fff7f7;
    display:flex;
    align-items:center;
    color:#434343;
    font-size:0.8em;
    padding:13px;
    border-radius:5px;
}

.errorbox img{
    width:26px;
    margin-right:10px;
}