*{
    font-family: 'Open Sans', sans-serif;
}
body{
    margin: 0;
    padding: 0;
}
div{
    box-sizing: border-box;
}
.background{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-position: center;
    background-size: cover;
}
.informacoes{
    width: 100%;
    height: 100vh;
    flex-shrink: 1;
    flex-grow: 1;
    position: relative;
}
.informacoes .logo{
    font-size: 20px;
    color: #fff;
    position: absolute;
    right: 30px;
    bottom: 30px;
    text-shadow: 1px 1px 2px rgba(150, 150, 150, 0.5);
}
.painel{
    -webkit-box-shadow: -5px 0px 10px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow:    -5px 0px 10px 0px rgba(50, 50, 50, 0.2);
    box-shadow:         -5px 0px 10px 0px rgba(50, 50, 50, 0.2);
    background-color: #f9fcff;
    background-image: linear-gradient(147deg, #f9fcff 0%, #dee4ea 74%);
    border-radius: 25px 0 0 25px;
    height: 100vh;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.titulo{
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1;
}
.campos .campo{
    margin-bottom: 20px;
    background-color: #000;
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: #ECF100;
    border-radius: 5px;
}
.campos .campo input{
    background: none;
    border: none;
    margin-left: 10px;
    height: 40px;
    min-width: 200px;
    color: #fff;
    outline: none;
}
.botao{
    text-align: right;
}
.botao button{
    background-color: #ECF100FF;
    border: 4px solid #ECF100;
    text-align: center;
    color: #000;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.botao button:hover{
    background-color: #ECF10000;
}
.runtech img{
    max-width: 250px;
    margin: 0 auto 20px auto;
}