#absoluter{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#middler{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 530px;
    border: 1px solid #ccc;
    border-radius: 20px;
    text-align: center;
    height: auto;
    min-height: 600px;
}
.main{
    margin-top: 150px;
    border-radius: 15px;
    width: 533px;
    height: 601px;
    font-family: 'PoppinsMedium', sans-serif;
    border: 1px solid #CCCCCC;
}
.title{
    padding-top: 50px;
    width:200px;
}
.description{
    font-size: 20px;
    color: black;
    width:72%;
    min-width: 260px;
    padding-bottom: 54px;
    padding-top:35px;
    margin-bottom: 0;
}
.btn{
    width: 100%;
    max-width: 400px;
    height: 48px;
    margin: 15px 0 15px 0;
    background-color: black;
}
.formRow {
    padding-top:5px;
    padding-bottom: 5px;
    display: block;
}
.formRow--item{
    width: 100%;
    max-width: 413px;
    margin-left: auto;
    margin-right: auto;
}
.formRow--input {
    padding: 15px 20px 11px;
    width: 100%;
    height: 60px;
    outline: none;
    border: solid 1px #CCCCCC;
    border-radius: 4px;
    color: #2c3235;
    font-size: 16px;
    transition: all .2s ease;
}
.formRow--input-wrapper {
    position: relative;
    display: block;
}
.formRow--input-wrapper.active .placeholder {
    top: -5px;
    background-color: #ffffff;
    color: #FF5252;
    font-size: 13px;
    line-height: 14px;
    transform: translateY(0);
}
.formRow--input-wrapper.active .formRow--input:not(:focus):not(:hover) ~ .placeholder {
    color: #CCCCCC;
}
.formRow--input-wrapper .formRow--input:focus, .formRow--input-wrapper .formRow--input:hover,  .formRow--textarea:hover{
    border-color: #FF5252;
}
.formRow .placeholder {
    position: absolute;
    top: 50%;
    left: 10px;
    margin: 0 5px;
    padding: 0 6px;
    color: #CCCCCC;
    font-size: 15px;
    transition: all, .2s;
    transform: translateY(-50%);
    pointer-events: none;
    font-family: "Poppins";
}

@media only screen and (max-width: 900px) {
    .main{
        margin-top:50px;
        border:0 !important;
    }
    .formRow{
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .formRow--item{
        width: 100%;
    }
    .btn{
        width: 80%;
    }
}
#versionerZone{
    opacity: 0.5;
    padding-bottom: 30px;
}