.login-content{
    top: 0;
    left: 0;
    position: absolute;
    height: 100vh;
    width: 100vw;

    background-image: linear-gradient(to bottom right, #e1e1e1, #2189eb87, #dadadaa9);
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form{
    height: 32vh;
    width: 58vh;
    background-color: rgb(254, 243, 239);

    box-shadow: 4px 4px 5px #999;
    border-radius: 10px;

    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.input-container{
    display: flex;
    flex-direction: row;
    width: 80%;

    align-items: center;
    justify-content: center;
}

.label-login{
    width: 15%;
    margin: 20px;
}

.input-login{
    height: 23px;
    width: 60%;
    margin: 20px;

    background-color: rgba(248, 248, 248, 0.826);
    border: 1px solid;
    border-radius: 3px;
    padding: 2px;
    padding-left: 5px;
}

.button-login{
    height: 32px;
    width: 50%;
    margin: 15px;

    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;

    background-color: #00396fec;
    color: rgb(254, 243, 239);

    border: none;
    border-radius: 20px;
}
