
body {
    margin: 0;
    padding: 0;
    background: #f1f7fc;
}

.form-container {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    width: 100%;
    height:100%;
    /* margin: 0 auto; */
    /* box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1) */
}

.form-container form {
    display: inline-block;
    /* width: 500px; */
    width: 30vw;
    height: 100vh;
    /* background-color: #ffffff; */
    padding: 200px 60px;
    color: #505e6c
}

.form-container .image-holder {
    /* display: inline-block; */
    width: 70vw;
    /* height: 100%; */
    background: url("/static/dist/img/pcn.png") no-repeat center;
    background-size: 80%;
    background-color: #ffffff;

}

@media only screen and (max-width: 800px) {
    .form-container{
        flex-direction: column;
    }

    .form-container > .image-holder {
        height: 30vh;
        width: 100%;
    }

    .form-container form {
        width: 100vw;
        padding: 60px 20px;
    }

}

.form-container form .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid #dfe7f1;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    color: inherit;
    text-indent: 0px;
    height: 40px
}


.error-message {
    color: red;
    font-size: 15px;

}

