.login {
    display: flex;
    flex-direction: row;
    justify-content: center;
    block-size: fit-content;
    width: fit-content;
    border-radius: 40px;
    border: 2px solid gray;
    padding: 30px 40px 40px 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 3px 10px rgb(97, 97, 97);
}

.login form {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;

}

.login form div {
    text-align: center;
}

.login form input {
    box-sizing: border-box;
    border-radius: 50px;
    padding: 12px 20px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    box-shadow: 0px 3px 5px rgb(97, 97, 97);
}

.login form input[type=text] {
    border: 2px solid gray;
    width: 100%;
    background-color: white;
    color: gray;
}

.login form input[type=submit] {
    border: 2px solid rgb(57, 57, 226);
    width: 100%;
    background-color: rgb(77, 133, 255);
    color: white;
}

.login form input[type=submit]:hover {
    background-color: rgb(57, 57, 226);
}

.login form input[type=submit]:active {
    background-color: rgb(57, 57, 226);
    transform: scale(0.98);
}