@font-face {
    font-family: 'roboto';
    src: url('fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body{
    font-family: 'Roboto', sans-serif;
}


.page{
    max-width: 80%;
    margin: auto;
}

.forreal{
    text-align: center;
    font-size:32px;
    font-weight:700;
}

.box{
    position:relative;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.02);
    color: #4a4a4a;
    display: block;
    padding: 1.25rem;
    width: calc(50% - 100px);
    margin: 40px;
    float: left;
    min-height: 170px;
}
.box:nth-child(odd){
    margin-left:0px;
}

.form__label {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    margin-left: 2rem;
    margin-top: 0.7rem;
    display: block;
    transition: all 0.3s;
    transform: translateY(0rem);
  }
  
.form__input {
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-size: 1.2rem;
    margin: 0px 20px 15px 0px;
    padding: 0.5rem 1rem;
    border-radius: 0.2rem;
    background-color: rgb(255, 255, 255);
    border: 1px solid #E1E1E1;
    display: block;
    /* border-bottom: 0.3rem solid transparent; */
    transition: all 0.3s;
    float:left;
}

.form__input:placeholder-shown + .form__label {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-4rem);
    transform: translateY(-4rem);
}

.submit{
    clear:both;
    width:100%;
    position:relative;
    height: 50px;
}

.btn-submit {
    position: relative;
    background: #000;
    border: 0;
    padding: 14px 42px;
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.2em;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

   
.converted{
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}

/* Smartphones */
@media only screen and (max-width : 800px) {
    .page{
        max-width: 100%;
        margin: auto;
    }
    
    .forreal{
        font-size:24px;
    }
    
    .box{
        width: 80%;
        margin: 20px auto;
        float:none;
    }
    .box:nth-child(odd){
        margin-left:inherit;
    }
}