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

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

body {
    background-color: #24272A;
}

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

.form_container {
    text-align: center;
    display: grid;
    justify-content: center;
    margin-top: 10%;
}

.form_inner {
    background-image: url("/static/assets/login_bckg.svg");
    width: 368px;
    height: 488px;
    background-repeat: no-repeat;
    background-size: 100%;
}

.form_container .geoscan_logo {
    /* position: absolute; */
    margin-top: 50px;
    height: fit-content;
    /* top: 50px; */
    /* left: 162px; */
}

.form_container h3 {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 300;
    height: fit-content;
    margin-top: 20px;
}

.form_container form input {
    border: 0px;
    background: transparent;
    border-bottom: 2px solid #C1C1C1;
    width: 266px;
    font-size: 24px;
    color: #FFFFFF; 
    padding-bottom: 5px;
    padding-left: 10px;
    font-weight: 300;
    margin-top: 20px;
    height: 50px;
}

.form_container form input[type="text"] {
    /* top: 220px; */
    /* left: 42px; */
}

.form_container form input[type="password"] {
    /* top: 280px; */
    /* left: 42px; */
}

.form_container form button {
    /* position: absolute; */
    /* top: 350px; */
    /* left: 42px; */
    width: 276px;
    height: 55px;
    background: transparent;
    border: 2px solid #C1C1C1;
    color: #FFFFFF;
    font-size: 32px;
    font-weight: lighter;
    margin-top: 30px;
    margin-bottom: 20px;
}

p.error_info {
    font-size: 20px;
    color: rgb(255, 109, 27);
    margin-top: 20px;
    /* position: absolute; */
    /* top: 175px; */
    /* left: 55px; */
}

a {
    /* position: absolute; */
    /* left: 42px; */
    /* top: 430px; */
    width: 276px;
    font-size: 20px;
    color: rgb(255 109 27);
    text-decoration: none;
    transition-duration: 0.3s;
}

a:hover {
    color: #FFFFFF;
    transition-duration: 0.3s;
}