body {
    font-family: 'RawlineMedium', Verdana, Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    background: #ffffff;
    padding: 0;
    margin: 0;

}

*:before, *:after {
    box-sizing: inherit;
}

page { display: block; }

.hide { display: none; }

/* Page */
.pageContent {
    background-color: #fefefe;
    margin: 1% auto 15% auto; /* 1% from the top, 15% from the bottom and centered */
    padding: 0 5px;
}


#pageHeader {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    background-color: #333333;
}

#tyLogo {
    margin-left: 2%;
}

.flex01u150px {
    flex: 0.1 150px;
}

.tyHeader {
    background-color: #333333;
    height: 54px;
    background-image: url(/images/logo.svg);
    background-repeat: no-repeat;
    background-size: 135px, auto;
    background-position: 1% 5px;
}


/* intro div */
.introDiv{ display: flex;  justify-content: center;  color: #4a90e2; font-size: 1.5rem; margin:5px auto; }

#errorMessage {
    width: 90%;
    margin: 10px auto 10px auto;
    padding: 5px;
    color:red;
    font-weight: 500;
    text-align: center;
    line-height: 1.4rem;
    background-color: #eee;
    border-radius: 4px;
}


/* input rows */
.container {
    padding: 6px 6px 0 6px;
    max-width: 440px;
    margin: 0 auto;
}

.passwordDiv { margin: 30px 0; }

/* names section */
.row {
    display: flex;
    flex-direction: column;
}


/* Input fields */
input[type=text], input[type=email], input[type=password]{
    padding: 10px 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 1rem;
}

::placeholder { color: blue; font-style: italic; }

input.userName { border: 1px solid #D1D1D1; border-radius: 4px; max-width: 440px; }  /* 400px; */
input.password { border: 1px solid #D1D1D1; border-radius: 4px; max-width: 440px; }   /* 200px; */

/* Set a style for all buttons */
.button {
    background-color: #4CAF50;
    color: white;
    padding: 8px 30px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
}

.button:hover {
    opacity: 0.7;

}


/* submit bits */
#submitDiv {
    display: flex;
}

.submitBtnDiv {
    margin-left: auto;
}

.loginBtn {
    max-width: 100px;
    font-size: 1rem;
}

/* links at bottom of page */
#links {
    display: flex;
    justify-content: space-between;
}


#forgetPw, #newProfile { margin-top: 10px; }


/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 400px) {
    #links { flex-direction: column;}
    .container { padding: 2px 2px 0 2px; }
    #newProfile{ text-align: left; margin-right: auto; }
    #forgetPw, #newProfile { margin-top: 30px; }
}