* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    /* make the body full height*/
    height: 100vh;
    /* set our custom font */
    font-family: 'Comfortaa', Verdana, Arial, Helvetica, sans-serif;
    /* create a linear gradient*/
    background-image: linear-gradient( to right, #ffffff, #ffffff);
    display: flex;
}

form {
	display: contents;
}
	
.content {
    width: 1000px;
    /* height: 700px; */
    /* this will help us center it*/
    margin: auto;
    background-color: #e6e6e6;
    border-radius: 50px;
    /* make it a grid container*/
    display: grid;
    /* with two columns of same width*/
    grid-template-columns: 1fr 1fr;
    /* with a small gap in between them*/
    /*grid-gap: 5vw;*/
    /* add some padding around */
    padding: 5vh 15px;
    -moz-box-shadow: -1px -1px 6px #DFDFDF, 5px 5px 6px #DFDFDF;
    -webkit-box-shadow: -5px -5px 6px #DFDFDF, 5px 5px 6px #DFDFDF;
    -khtml-box-shadow: -1px -1px 6px #DFDFDF, 5px 5px 6px #DFDFDF;
    -ms-filter: "progid:DXImageTransform.Microsoft.DropShadow(color=#DFDFDF, offx=5, offy=5)";
    filter: progid:DXImageTransform.Microsoft.DropShadow(color=#DFDFDF, offx=5, offy=5);
    box-shadow: -5px -5px 6px #DFDFDF, 5px 5px 6px #DFDFDF;
}

#form_left {
    /* center the image */
    display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
}

#form_left img {
    width: 350px;
    /*height: 350px;*/
}

#form_right {
    vertical-align: middle;
    display: grid;
    /* single column layout */
    grid-template-columns: 1fr;
    /* have some gap in between elements*/
    grid-gap: 20px;
    padding: 10% 5%;
}

#form_right img {
    width: 350px;
    /*height: 350px;*/
}

#form_right h1 {
    color: #e75313;
}

.input_container {
    background-color: #ffffff;
    /* vertically align icon and text inside the div*/
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.input_container:hover {
    background-color: #ffffff;
}

.input_container {
    height: 60px;
    /* make the borders more round */
    border-radius: 30px;
    width: 100%;
}

.input_container:hover, .input_container:focus {
    border: 0px solid orange;
    box-shadow: 0 0 10px orange;
}

.input_container, #input_submit {
    height: 60px;
    /* make the borders more round */
    border-radius: 30px;
    width: 100%;
}

.input_field {
    /* customize the input tag with lighter font and some padding*/
    color: #6b6b6b;
    background-color: inherit;
    width: 90%;
    border: none;
    font-size: 1.3rem;
    font-weight: 400;
    padding-left: 30px;
}

.input_field:hover, .input_field:focus {
    /* remove the outline */
    outline: none;
}

#input_submit {
    background: #e75313;
    background-image: -webkit-linear-gradient(top, #e75313, #f6a800);
    background-image: -moz-linear-gradient(top, #e75313, #f6a800);
    background-image: -ms-linear-gradient(top, #e75313, #f6a800);
    background-image: -o-linear-gradient(top, #e75313, #f6a800);
    background-image: linear-gradient(to bottom, #e75313, #f6a800);
    -webkit-border-radius: 28;
    -moz-border-radius: 28;
    border-radius: 28px;
    -webkit-box-shadow: 0px 1px 3px #666666;
    -moz-box-shadow: 0px 1px 3px #666666;
    box-shadow: 0px 1px 3px #666666;
    font-family: Arial;
    color: #ffffff;
    padding-left: 0;
    font-weight: bold;
    /*padding: 10px 10px 10px 10px;*/
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.75);
}

#input_submit:hover {
    background: #f6a800;
    background-image: -webkit-linear-gradient(top, #f6a800, #e75313);
    background-image: -moz-linear-gradient(top, #f6a800, #e75313);
    background-image: -ms-linear-gradient(top, #f6a800, #e75313);
    background-image: -o-linear-gradient(top, #f6a800, #e75313);
    background-image: linear-gradient(to bottom, #f6a800, #e75313);
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.75);
    cursor: pointer;
}

h1, span {
    text-align: center;
}

/* shift it a bit lower */

a {
    /* remove default underline */
    text-decoration: none;
    color: #000000;
    font-weight: bold;
}

a:hover {
    color: #000000;
}

i {
    color: #6b6b6b;
}

#kc-feedback-wrapper {
    display: inline-block;
    width: auto;
    background-position: left bottom;
    background-repeat: no-repeat;
    padding-bottom: 10px;
}

.alert span {
    display: block;
    padding: 1px 10px 1px 30px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    background-repeat: no-repeat;
    background-position: 5px center;
    font-weight: normal;
    line-height: 1.4em;
    border-radius: 2px;
    color: #4d5258;
    margin-bottom: 0;
}

/*
.alert-error #kc-feedback-wrapper {
    background-image: url(../img/feedback-error-arrow-down.png);
}
*/

.alert-error span {
    border-color: #b91415;
    background-image: url(../img/feedback-error-sign.png);
    background-color: #f8e7e7;
}

/* make it responsive */

@media screen and (max-width: 768px) {
    /* make the layout  a single column and add some margin to the wrapper */
	
	body {
		background-image: linear-gradient( to right, #e6e6e6, #e6e6e6);
	}
	
    .content {
        align-items: start;
        grid-template-columns: 1fr;
        /*
        margin-left: 10px;
        margin-right: 10px;
		*/
        -webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
        width: 100%;
        height: 100%;
        margin-left: 0px;
        margin-right: 0px;
        padding: 0 0;
    }
    /* on small screen we don't display the image */
    #form_left {
        display: none;
    }

    #form_right img {
        width: 100%;
        /*height: 350px;*/
    }
}

@media screen and (min-width: 769px) {
    #logo {
        display: none;
    }
}