@import url("./reset.css");

html {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 300;
    height: 100%;
}

body {
    background-color: #24272A;
}

h1 {
    font-weight: 300;
    font-size: 46px;
    color: #FFFFFF;
    margin-top: 50px;
    margin-left: 95px;
}

.form_container {
    background-image: url("/static/assets/registration_bckg.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 690px;
    height: 488px;
    margin: 0 auto;
    padding: 36px 40px 60px 40px;
    box-sizing: border-box;
    margin-top: 70px;
}

.form_header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.geoscan_logo {
    background-image: url("/static/assets/geoscan_logo_or.svg");
    width: 36px;
    height: 39px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: inline-block;
}

h3 {
    color: #FFFFFF;
    font-size: 40px;
    width: 280px;
    text-align: center;
}

form {
    display: flex;
    justify-content: space-between;
}

.left_col, .right_col {
    width: 276px;
}

input, select, button, a {
    width: 276px;
    height: 36px;
    padding: 0px;
    border: 0px;
    border-bottom: 2px solid #C1C1C1;
    background: transparent;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 300;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 300;
    margin-bottom: 26px;
    box-sizing: border-box;
}

select {
    background-color: transparent;
    color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-image: url("/static/assets/arrow.svg");
    appearance: none;
    text-align: left;
    background-size: 15% 65%;
    transition-duration: 0.3s;
}

select option {
    background-color: #24272A;
    color: #F6F6F6;
}

select:hover {
    background-position: 100% 75%;
    transition-duration: 0.3s;
}

button, a {
    height: 55px;
    border: 2px solid #C1C1C1;
    margin-top: 4px;
    text-decoration: none;
    line-height: 2;
    text-align: center;
    display: block;
}

.error_info {
    text-align: center;
    color: #ff6d1b;
}