﻿
.formBox {
    margin-top: 10px;
    padding: 20px;
}

    .formBox h1 {
        margin: 0;
        padding: 0;
        text-align: center;
        margin-bottom: 50px;
        text-transform: uppercase;
        font-size: 48px;
    } .inputText {
            color: blue;
            font-size: smaller;
        }

.inputBox {
    position: relative;
    box-sizing: border-box;
    margin-bottom: 30px;
}

    .inputBox .inputText {
        position: absolute;
        font-size: 24px;
        line-height: 50px;
        transition: .5s;
        opacity: .5;
    }

    .inputBox .input {
        position: relative;
        width: 100%;
        height: 50px;
        background: transparent;
        border: none;
        outline: none;
        font-size: 24px;
        border-bottom: 1px solid rgba(0,0,0,.5);
    }

.focus .inputText {
    transform: translateY(-30px);
    font-size: 18px;
    opacity: 1;
    color: #00bcd4;
}

textarea {
    height: 200px !important;
    font-size : 16px !important;
}

.button {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    background: #03A9F4;
    color: #fff;
}

.header {
    margin-top: 50px;
}


.dropped {
    margin-top:30px ;
}
