@charset "utf-8";

.login-menu-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-padding{
    padding: 3%;
}
.non-clickable{
    pointer-events: none;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 900; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    display: flex;
    flex-direction: column;
    font-family: 'din-2014';
    width: 60vw;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.background-color-logo-1{
    background-color: #fce38a;
}
.login-icon{
    justify-content: center;
    align-content: center;
    display: flex;
    height: 6vh;
}

.login-choices{
    font-size: 1vw;
}
.background-color-login-option {
    background-color: #00ad45;
}

.login-login{
    cursor: pointer;
    color: #FFFFFF;
}
.login-register{
    cursor: pointer;
    color: #000000;
}

.login-forgotpw{
    cursor: pointer;
    color: #000000;
}

.login-login-title{
    font-size: 4vh;
}

.input {
    margin-bottom: 1em;
    padding: 13px 15px;
    border: 1px solid #eee;
    background: #eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.login-button{
    color: #FFFFFF;
        margin-top: auto;
    cursor: pointer;
}

.input span {
    font-size: 15px;
    color: #464646;
    margin-right: 10px;
}

.input input {
    color: #000;
    font-size: 14px;
    letter-spacing: 1px;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
}

.login-content-container{
    display: grid;
}

.login-login-content{
    grid-area: 1/1/1/1;
}

.login-register-content{
    grid-area: 1/1/1/1;
    visibility: hidden;
}

.login-forgotpw-content{
    grid-area: 1/1/1/1;
    visibility: hidden;
}