/* font family */
@font-face {
	font-family: Oxanium_regular;
	src:url('../fonts/Oxanium-Regular.ttf');
}

body {
    height: 100%;
    background-color: black;
    color: white;
    background-image: url('../img/bg-mentions.jpg');  /*new*/
    background-position: center;  /*new*/
    background-size: cover;  /*new*/
    background-repeat: no-repeat;
    /* background-image: url(../img/bg-mentions.jpg);
    background-position: center;
    background-size: cover; */
}
.register_cover {
    background-image: url('../img/cover_img.png');  /*new*/
    /* background-color: rgba(0,0,0,.6); */
    background-position: center;  /*new*/
    background-size: cover;  /*new*/
	width: 100%;
    background-attachment: fixed;
    border: 1px solid transparent;
    min-height: 100%;
    padding: 0 40px;
}

.form-register {margin: 0; /*new*/}
.form-container {
    position: relative;
    margin: 0 auto;
    max-width: 500px;
    padding: 1rem 15px 15px;  /*new*/
    min-height: 100vh;  /*new*/
    display: flex;  /*new*/
    justify-content: center;  /*new*/
    align-items: center;  /*new*/
}
.form-group label {
    text-transform: uppercase; /*new*/
    font-family: "Trajan Pro"; /*new*/
}
.form-container > div {width: 100%;}

input.form-control, input:focus.form-control {
    text-align: center;
    /* font-family: Oxanium_regular; */
}

.alert p {
    margin-bottom: 0;
}


.form-submit {
    margin-top: 2rem;
}

h1 {
    font-family: "Trajan Pro";
    font-size: 1.7rem;
    text-align: center;
    color: #efb72c;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

h3 {
    font-family: Oxanium_regular;
    font-size: 16px;
    margin-bottom: 1.5rem;
	line-height: 25px;
	font-weight: 300;
    text-align: center;
}

.m21-form .btn {
    font-family: "Trajan Pro";
    font-size: 1.2rem;
    text-shadow: 0px 0px 5px #000000;
    color: #e8e8e8;
    border-radius: 0.5rem;
    padding: 1rem 1rem 0.75rem 1rem;
    max-width: ;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.4s;
    margin-top: 2rem;
}

.form_cover {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	cursor: default;
}

img.nav-close {
	position: absolute;
    margin-top: 0;
    width: 52px;
    right: 4px;
}

.center {
    margin: 0 auto;
    display: block;
    width: 100%;
}

.m21-form .btn-blue {
    border: 1px #5fc6ce solid;
    background-color: rgba(20,68,86,0.5);
}

.m21-form .btn-blue:hover{
    color: white;
    background-color: rgb(20,68,86);
    transition: background-color 0.4s;
}

p.reset_pw {
    margin-top: 0.5rem;
    text-align: right;
}

p.reset_pw a {
    color: #597d85;
    font-family: Oxanium_regular;
    font-size: 1rem;
}

p.reset_pw a:hover {
    text-decoration: none;
    color: #d99f26;
}


p.register {
    font-family: Oxanium_regular;
    font-size: 1rem;   
}

p.register a {
    color: #d99f26;
}


@media screen and (max-width: 768px) {

    h1 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    h3 {
        margin-bottom: 1rem;
    }

    .form-submit {
        margin-top: 1rem;
    }

    p.reset_pw {
        margin-bottom: 0.5rem;
    }

    .m21-form .btn {
        font-size: 1rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

}