/* fonts: 'petitaboldregular', 'petitalightregular', 'petitamediumregular' */

html{
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    border: none;
}

body{
    display:flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    border: none;
    background-image: url("../assets/backdrop1.svg");
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    
}

#login-container{
    width:450px;
    height: 450px;
    background-color: white;
    border-radius: 5px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid RGB(204,204,204);
    flex: 0 1 auto;
    /* box-shadow: 3px 3px 15px RGB(204,204,204); */
    /* box-shadow: 3px 3px 15px black; */
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    box-shadow: 10px 10px 30px RGBA(0,0,0, 0.6);
}
#logo{
    width:150px;
    padding-bottom:50px;
}
#login-container-logo{
    width: auto;
    height:auto;
    font-family: petitaboldregular;
    color: rgb(51, 51, 204);
    text-align: center;
    font-size: 40px;
    padding-top:30px;
    padding-bottom:30px;
}

#login-container-username{
    margin-top: 20px;
    width: 285px;
    padding-left: 15px;
    height:30px;
    border-radius: 15px;
    border: 2px solid RGB(195,195,195);
    transition: all 0.8s ease 0s;
    
}
#login-container-username:focus, input:focus{
    outline: none !important;
    border-radius: 15px;
    border: 2px solid #225a6d;
    
}


#login-container-password{
    margin-top: 20px;
    width: 285px;
    padding-left: 15px;
    height:30px;
    border-radius: 15px;
    border: 2px solid RGB(195,195,195);
    transition: all 0.8s ease 0s;
}

#login-container-password:focus, input:focus{
    outline: none !important;
    border-radius: 15px;
    border: 2px solid #225a6d;
    
}

#login-container-signin-button{
    width:150px;
    height: 30px;
    border-radius: 5px;
    box-shadow: 3px 3px 7px RGB(204,204,204);
    outline: none;
    border: none;
    margin-top: 20px;
    background-color: #225a6d;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease 0s;
}
#login-container-signin-button:hover{
    transform: translateY(-3px);
    background-color: #225a6db6;
    box-shadow: 3px 6px 7px RGB(204,204,204);
}

#error-message{
    margin-top:10px;
    height:20px;
    width: auto;
    color: rgb(224, 13, 13);
    font-family: 'petitalightregular';
}

#footer{
    width:98%;
    padding-right:2%;
    height:50px;
    position: absolute;
    bottom: 0px;
    text-align: right;
    color: white;
    font-family: petitaboldregular;
    font-size: 20px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-end;
    background-color: rgba(0,0,0,0.4);
}

.pierian-tech{
    font-family: petitaboldregular;
}

#footer-text{
    height: auto;
    font-family: petitalightregular;
    flex: 0 1 auto;
}