body{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;

}
/*.loginContainer form{*/
/*    position: absolute;*/
/*    width: 700px;*/
/*    top: 20%;*/
/*    !*left: 30%;*!*/
/*}*/

.left{
    position: absolute;
    float: left;
    /*left: 0;*/
    width: 50%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.41);*/
}
.right{
    float: right;
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    /*box-snap: block-end;*/
    padding: 50px;
    color: white;
    /*float: right;*/
    /*right: 0;*/
    /*width: 50%;*/
    /*height: 100%;*/
    background-color: #0378A6;
    box-sizing: border-box;
}

.intro{
    height: 50px;
    font-size: 28px;
    margin-bottom: 20px;
}
.logo{
    color: red;
}

* {
    box-sizing: border-box;
}


.centered {
    /*background-color: red;*/
    width: 60%;
    height: 410px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
form{
    width: 400px;
}

.group {
    width: 100%;
    margin-bottom: 16px;
    /*overflow: hidden;*/
    /*position: relative;*/
    /*background-color: red;*/
}

label {
    color: black;
    font:  20px Roboto;
    cursor: text;
}

input {
    /*background-color: #0d8aee;*/
    display: block;
    width: 100%;
    padding: 10px;
    /*border: none;*/
    border-radius: 10px;
    color: black;
    font-size: 18px;
    transition: 0.3s ease;
    border: 1px solid #c6c6c6;

}
input:focus{
    outline: none;
}

select {
    /* Reset Select */
    font-size: 18px;
    appearance: none;
    outline: 0;
    border: 1px solid #c6c6c6;
    box-shadow: none;
    /* Personalize */
    flex: 1;
    padding: 0 1em;
    color: black;
    /*background-color: #2c3e50;*/
    background-image: none;
    cursor: pointer;
}
/* Remove IE arrow */
select::-ms-expand {
    display: none;
}
/* Custom Select wrapper */
.select {
    position: relative;
    display: flex;
    width: 100%;
    height: 3em;
    border-radius: .25em;
    overflow: hidden;
}
/* Arrow */
.select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
    /*background-color: #34495e;*/
    transition: .25s all ease;
    pointer-events: none;
}
/* Transition */
.select:hover::after {
    color: #f39c12;
}

.btn {
    background: #0378A6;
    color: white;
    width: 100%;
    height: 40px;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}


.title{
    font: 500 70px "Roboto Light";
    margin: 25% auto;
    width: 80%;
    margin-bottom: 5%;
}

.right p{
    font: 500 25px "Roboto Light";
    width: 60%;
    margin: 0 auto;
    color: #CFCFCF;
}

