body {
    background: linear-gradient(0deg, rgb(69,148,244) 0%, rgb(8,201,193) 52%, rgb(43,185,191) 100%);
    background-repeat: no-repeat;
    overflow-y: hidden;
    height: 100%;
    /* background-color: red; */
}

html {
    height: 100%;
}

.form-wrapper {
    position: absolute;
    background-color: white;
    left: 40%;
    top: 30%;
    height: 330px;
    width: 400px;
    border-radius: 15px;
    padding: 10px;
    border: 1px solid rgb(8,201,193);
    box-shadow: 0px 0px 5px 1px rgb(8,201,193);

    transition: all ease 0.5s;
}

.form-wrapper:hover {
    box-shadow: 0px 0px 5px 1px rgb(7, 121, 117);
}

#logo {
    margin-left: 75px;
    border-radius: 5px;
}

.input-wrapper {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 10px;
}

.input-wrapper input {
    height: 40px;
    font-size: 20px;
    border-radius: 10px;
    border: 2px solid rgb(8,201,193);
}

.input-wrapper button {
    height: 40px;
    font-size: 20px;
    border-radius: 10px;
    border: 2px solid rgb(8,201,193);
    color: white;
    background-color: rgb(8,201,193);
    cursor: pointer;
}