@font-face {
    font-family: arialAmuBold;
    src: url('fonts/Arial-AMU-Bold.ttf');
}
@font-face {
    font-family: arialAmuBoldItalic;
    src: url('fonts/Arial-AMU-Bold-Italic.ttf');
}

*{
    margin: 0;
    padding: 0;
}
body, input {
    font-family: arialAmuBold;
}
textarea:focus, input:focus{
    outline: none;
}
.amuItalic {
    font-family: arialAmuBoldItalic;
}
.login_overlay {
    height: 100vh;
    width: 100vw;
    background: url("images/login-page-contour-cover.png") no-repeat;
    background-size: cover;
    background-position: bottom;
}
.page_title {
    text-align: center;
}
.page_title p {
    color: #00BABF;
}
.page_title h1 {
    padding: 10px;
}
.log_in_block {
    background: url(images/login-form-block-01.png) no-repeat;
    background-size: cover;
    height: 550px;
    width: 320px;
    text-align: center;
    box-shadow: 0 0 10px grey;
    border-radius: 44px;
    margin: 70px auto 0 auto;
}
.log_in_block form {
    margin-top: 40px;
}
.log_in_block > img {
    width: 215px;
    margin-top: -60px;
    margin-left: 17px;
}
.us_pass {
    margin-bottom: 20px;
}
.us_pass:first-of-type input {
    background-image: url("images/user.png");
}
.us_pass:nth-child(2) input {
    background-image: url("images/pass.png");
}
.us_pass input {
    width: 98%;
    font-size: 17px;
    color: #00BABF;
    box-sizing: border-box;
    padding: 12px 2px 12px 28px;
    border: 1px solid #fff;
    border-radius: 25px;
    text-align: center;
    background-position: 8px 10px;
    background-repeat: no-repeat;
    background-size: 20px;
}
.us_pass input::placeholder {
    color: #00BABF;
    padding-right: 15px;
}

/* The radio */
.radio_wrapper {
    text-align: left;
    margin-left: 11%;
    margin-bottom: 20px;
    color: #fff;
}
.radio_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* Hide the browser's default radio button */
.radio_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border-radius: 20%;
}
/* On mouse-over, add a grey background color */
.radio_container:hover input ~ .checkmark {
    background-color: #f9f9f9;
}
/* When the radio button is checked, add a blue background */
.radio_container input:checked ~ .checkmark {
    background-color: #fff;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the indicator (dot/circle) when checked */
.radio_container input:checked ~ .checkmark:after {
    display: block;
}
/* Style the indicator (dot/circle) */
.radio_container .checkmark:after {
    top: 6px;
    left: 6px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #00BABF;
}

.sub_wrapper input {
    border: none;
    background: #fff;
    width: 50%;
    font-size: 24px;
    padding: 10px 0;
    border-radius: 25px;
    cursor: pointer;
    color: #00BABF;
    margin-bottom: 20px;
}
.sub_wrapper input:hover {
    background: #e2e2e2;
}
.restore_pass {
    font-size: 11px;
    color: #fff;
}
.restore_pass a {
    font-family: arialAmuBold;
    text-decoration: none;
    color: #00BABF;
}
.restore_pass a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 480px) {
    .page_title h1 {
        font-size: 24px;
        padding: 10px 5px 2px 5px;
    }
    .log_in_block {
        height: 500px;
        width: 265px;
        position: absolute;
        margin: 0 !important;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -30%);
    }
    .log_in_block form {
        margin-top: 30px;
    }
    .log_in_block > img {
        width: 185px;
    }
    .us_pass {
        margin-bottom: 10px;
    }
    .us_pass input {
        font-size: 18px;
        padding: 12px 15px 12px 40px;
        background-position: 15px 10px;
        background-size: 20px;
    }
    .us_pass input {
        width: 90%;
        font-size: 18px;
        padding: 12px 12px 12px 28px;
        border: 1px solid #fff;
        background-position: 8px 10px;
        background-size: 20px;
    }
    .radio_wrapper {
        margin-bottom: 15px;
    }
    .radio_container {
        font-size: 18px;
    }
    .sub_wrapper input {
        margin-bottom: 13px;
    }
    .restore_pass {
        padding: 0 15px;
    }
    .g-recaptcha div iframe{
        width: 100% !important;
    }
}
@media screen and (max-width: 330px) {
    .page_title h1 {
        font-size: 20px;
        padding: 10px 5px 0 5px;
    }
    .page_title p {
        font-size: 12px;
    }
}
