html 
{
    scroll-behavior: smooth;
}

/* ///////////////////////////////////////////////////////////////////////////////////////// */
/* Site Body */
body 
{
	/*default*/
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-variant: small-caps;
    font-size: 1rem; /* relative font size: 1rem = 16px */
    width: 100%;
    height: 100%;
    margin: 0;

    background-color: black;      
}

/* background container */
.background
{
    margin: auto;
    width: 100vw;
    height: 100vh;

    background-image: url(../../main/images/background_register.png);    
    background-repeat: no-repeat;
    background-size: 100% 100%;   

    box-sizing: border-box;
}

/* /////////////////////////////////////////////////////////////////////////////////////////////// */

/* left paper page container */
.page_left
{
    width: 49vw; /* 50% */
    height: 100vh;
    float: left;
    padding-left: 6%;
    padding-top: 1%;
    padding-bottom: 1%;

    box-sizing: border-box;
}

/* right paper page container */
.page_right
{
    width: 49vw; /* 50% */
    height: 100vh;
    float: right;
    padding-right: 6%;
    padding-top: 1%;
    padding-bottom: 1%;

    box-sizing: border-box;
}

/* /////////////////////////////////////////////////////////////////////////////////////////////// */

/* page contentbox container (contains all contents of a page) */
.page_contentbox_container
{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: inline;
}

/* page contentbox title container */
.page_contentbox_title_container
{
    width: 100%;
    height: 25%;
    margin-top: 0px;
    padding-top: 1%;
    box-sizing: border-box;

    color: #6f421d;
    font-family: Algerian;
    font-size: 3.7rem; /* relative font size: 1rem = 16px */
    text-align: center;
    text-decoration: underline;
    letter-spacing: 0.5rem;

    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
}

/* page contentbox image container */
.page_contentbox_image_container
{
    width: 98%;
    height: 30%;
    margin-top: 3%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 3%;
    box-sizing: border-box;

    color: #6f421d;
    font-size: 0.85rem; /* relative font size: 1rem = 16px */
    text-align: center;
}

/* page contentbox image */
.page_contentbox_image
{
    width: 45%;
    height: 100%;
}

/* page contentbox subtitle container */
.page_contentbox_subtitle_container
{
    width: 100%;
    height: 35%;
    margin-top: 3%;
    padding-top: 3%;
    box-sizing: border-box;

    color: #6f421d;
    font-family: Algerian;
    font-size: 3.3rem; /* relative font size: 1rem = 16px */
    text-align: center;
    letter-spacing: 0.25rem;
    line-height: 3.6rem;

    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
}

/* vertical separator on left page */
.image_subtitle_separator
{
    width: 80%;
    margin: auto;
    border-color: #6f421d;
}

/* registration form */

/* form container */
.form_container
{
    margin: auto;
    margin-top: 4%;
    width: 80%;
    height: 90%;

    background-image: url(../../main/images/background_register_form.png);    
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/* form content section */
.form_content_section 
{
    width: 95%;
    height: 65%;
    margin: auto;
    padding: 4%;
    box-sizing: border-box;
}

/* form title */
.form_title 
{
    margin-bottom: 4%;
    color: #6f421d;
    font-family: Algerian;
    font-size: 3rem; /* relative font size: 1rem = 16px */
    text-align: center;
    text-decoration: underline;
    letter-spacing: 0.25rem;
}

/* form input */
.form_input
{
    width: 100%;
    height: 40px;
    margin-bottom: 1%;

    color: black;
    border: none;
    border-bottom: 2px solid #6f421d;
    background-color: transparent;
    outline: none;
    font-size: 1.1rem; /* relative font size: 1rem = 16px */
}
.form_input_inv
{
    display: none;
}
::placeholder 
{
    color: rgba(73, 44, 19, 0.493);
}

/* form_submit_button */
.form_submit_button 
{
    height: 40px;
    width: 100%;
    margin-top: 2%;
    border: none;
    color: #ffffff;
    outline: none;
    background-color: tomato;
    cursor: pointer;
    border-radius: 20px;
}
.form_submit_button:hover 
{
    background-color: cyan;
    color: #ffffff;
}

/* form feedback container */
.form_feedback_container
{
    float: left;
    width: 60%;
    height: 20%;
    margin-top: 1%;
    padding-top: 1%;
    padding-left: 2%;
    box-sizing: border-box;

    color: #6f421d;
    text-align: center;
    text-decoration: underline;

    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
}

/* form feedback image container */
.form_feedback_image_container
{
    float: right;
    width: 20%;
    height: 20%;
    margin-top: 1%;
    box-sizing: border-box;
}
