*{
    margin: 0;
}
.login_logo {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 5% !important;
    height: 200px;
    width: 200px;
}
.login_label {
    display: block;
    text-align: center;
    font-size: 20px;
}
.login_input {
    display: block;
    margin: auto !important;
    height: 25px;
    font-size: 18px;
    border-radius: 10px;
    outline: none;
}
.login_header {
    text-align: center;
}
button {
    display: block;
    margin: auto !important;
    height: 40px;
    width: 150px;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5);
    transition: 0.2s;
    outline: none;
}
button:hover {
    background-color: darkgrey;
}
button:active {
    background-color: darkgrey;
    transform: translateY(4px);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.9);
}
.logo {
    height: 50px;
    width: 50px;
    display: inline-block;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 2px;
    padding-right: 7px;
}
.menu {
    padding: 20px;
}
ul {
    list-style-type: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: blue;
    width: 100%;
}
li {
    float: left;
}
li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 18px;

}
li a:hover, .drop:hover .dropbtn {
    background-color: black;
}
li.drop {
    display: inline-block;
}
.teams {
    display: none;
    position: absolute;
    background-color: blue;
    z-index: 1;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5);
}
.teams a {
    color: white;
    padding: 20px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 18px;
}
.teams a:hover {
    background-color: black;
}

.drop:hover .teams{
    display: block;
}
