.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95%;
}

.login-container #login {
    background-color: #FAFAFA;
    width: 300px;
    height: 800px;
}

#login {
    display: flex;
    flex-direction: column;
}

#uid {
    -webkit-appearance: none;
    width: 200px;
    height: 32px;
    font-size: 15px;
    border: 0;
    border-radius: 15px;
    outline: none;
    padding-left: 10px;
    background-color: rgb(233, 233, 233);
}

#pwd {
    -webkit-appearance: none;
    width: 200px;
    height: 32px;
    font-size: 15px;
    border: 0;
    border-radius: 15px;
    outline: none;
    padding-left: 10px;
    background-color: rgb(233, 233, 233);
}

.login-btn {
    width: 200px;
    height: 32px;
    color: #fff;
    background-color: #545454;
    border-radius: 10rem;
    box-shadow:none;
    border:none;
}

.login-btn:hover {
    background-color: #000;
}