body,html{
    height: 100%;
}

.bg{ 
    /* background image*/
    background-image: url("images/background.jpg");
  
    /* Full height */
    height: 100vh;
    
  
    /* Center and scale the image*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; 

}

    /*--Navbar-->*/
.navbar{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    
   
}

    /*Menu*/
.sidepanel  {
    width: 0;
    position: fixed;
    z-index: 1;
    height: 250px;
    top: 0;
    right: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}
      
.sidepanel a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: black;
    display: block;
    transition: 0.3s;
}
      
.sidepanel a:hover {
    color: white;
}
      
.sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
}
      
.openbtn {
    font-size: 27px;
    cursor: pointer;
    background-color: white;
    color: black;
    padding-bottom: 13px;
    border: none;
    
}
      
.openbtn:hover {
    background-color:#444;
}

/*form container*/
.formContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 60px;
    background-color: white;
    height: 500px;
}

form {
    border: 3px solid #f1f1f1;
    border-radius: 25px;
    height: 350px;
    width: 400px;
    padding: 20px;
}

input[type=text],
input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 25px;
}

h1{
    text-align: center;
}

.col-sm-12{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

