.background {
    background-color: #bfe7f9;
}

.cotainer {
    width: 800px;
}

input {
    width: 100%;
    padding: 10px 15px;
    margin: 0 0 15px 0
}

.div_menu {
    background-color: rgb(177, 214, 214);
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}

button {
    margin-top: 30px;
    width: 100%;
    background-image: linear-gradient(to right, rgba(16, 134, 236), rgba(167, 209, 240, 0.34));
    color: #fff;
    font-weight: bold;
    padding: 10px;
    border-radius: 20px;
}

button:hover {
    background-color: rgb(50, 104, 255);
}

.bold:focus {
    border-bottom: 3px solid rgb(46, 148, 231);
}

.login {
    width: 320px;
    background: white;
    padding: 35px;
    border-radius: 30px;
    /* align-content: center; */
    /* display: flex; */
    justify-content: center;
    align-items: center;
    margin: 173px auto;
}

input[type="text"] {
    outline: none;
    width: 100%;
    margin: 10px 0;
    padding: 10px 0;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid rgb(9, 101, 138);

}

input[type="password"] {
    outline: none;
    width: 100%;
    margin: 10px 0;
    padding: 10px 0;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid rgb(9, 101, 138);

}

body {
    background-image: linear-gradient(to right, rgb(50, 171, 252), rgba(200, 244, 252, 0.55));
}

ul {
    list-style-type: none;
    text-align: center;
    padding: 5px;
}

li {
    padding: 5px;
}

a {
    text-decoration: none;
}

.modal {
    background-color: rgb(223, 28, 28);
    color: white;
    padding: 30px;
    border-radius: 10px;
    display: none;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    z-index: 999;
    right: 30px;
    top: 10px;
    transition: all 1s linear;
}
.footer{
    text-align: center;
    padding: 5px 5px ;
}
#username-validation, .password-validation{
display: none;
}