#createNewAccountPageOverlay{
    background-color:rgba(0,0,0,0.5);
    display: none; /* Use Flexbox */
    justify-content: center; /* Center children horizontally */
    align-items: center;
    height:100%;
    position:fixed;
    width:100%;
    z-index:999999;
}
#createNewAccountFormPlacer{
    background-color:#FFF;
    border-radius:10px;
    padding:10px;
    width:280px;
}
#createNewAccountFormHolder input{
    border-radius:5px;
    box-sizing: border-box;
    display:block;
    height:30px;
    line-height:30px;
    width:280px;
}
#createNewAccountFormHolder input[type="text"], #createNewAccountFormHolder input[type="password"]{
    border:1px solid #CCC;
    margin-bottom:10px;
    padding:0 5px;
}
#createNewAccountFormHolder #createAccount{
    background-color:var(--main-color);
    color:#FFF;
    margin-top:10px;
}
#createNewAccountFormHolder #createAccount:hover{
    background-color: var(--main-hover-color);
    cursor:pointer;
}

#forgotPasswordPageOverlay{
    background-color:rgba(0,0,0,0.5);
    display: none; /* Use Flexbox */
    justify-content: center; /* Center children horizontally */
    align-items: center;
    height:100%;
    position:fixed;
    width:100%;
    z-index:999999;
}
#forgotPasswordFormPlacer{
    background-color:#FFF;
    border-radius:10px;
    padding:10px;
    width:280px;
}
#forgotPasswordFormHolder input{
    border-radius:5px;
    box-sizing: border-box;
    display:block;
    height:30px;
    line-height:30px;
    width:280px;
}
#forgotPasswordFormHolder #resendEmailInput{
    border:1px solid #CCC;
    padding:0 5px;
}
#forgotPasswordFormHolder #resendPassword{
    background-color:var(--main-color);
    color:#FFF;
    margin-top:10px;
}
#forgotPasswordFormHolder #resendPassword:hover{
    background-color: var(--main-hover-color);
    cursor:pointer;
}

#loginContainer {
    background-color: red;
    width: 300px;
    margin: 0 auto;
    margin-bottom: 100px;
    margin-top: 100px;
    border-radius: 5px;
    background-color: #fff;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 10px;
}

#loginForm label {
    display: block;
    float:left;
    margin-bottom: 5px;
}

#loginForm input[type="text"], #loginForm input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#userLogin {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: var(--main-color);
    color: #fff;
    cursor: pointer;
}

#userLogin:hover {
    background-color: var(--main-hover-color);
}

#forgotPassword{
    float:right;
    text-decoration:underline;
}
#forgotPassword:hover{
    cursor:pointer;
}

#createNewAccount{
    float:right;
    margin-top:10px;
    text-decoration:underline;
}
#createNewAccount:hover{
    cursor:pointer;
}
