.login-body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(/Assets/img/137543.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.login-form {
    background: linear-gradient(180deg, #71c0ff, white);
    box-shadow: 0px 0px 8px 2px #00000029;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.login-form h3 {
    margin: 20px 0;
}

.login-form form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px 30px;
}

.login-form input {
    border: none;
    border-radius: 8px;
    background-color: #EFF2F7;
    padding: 7px 12px;
    width: 320px;
    margin: 21px 0px 0px 0px;
    outline: none;
}

.login-form button {
    border: none;
    padding: 7px 44px;
    margin: 10px 0px 25px 0px;
    background: linear-gradient(180deg, #363636, black);
    color: white;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s;
    letter-spacing: 2px;
}

.login-form button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 3px 4px 10px 2px #7f7f7f;
}

.login-forgot-password {
    width: 100%;
    display: flex;
    justify-content: right;
    margin-bottom: 10px;
}

.login-forgot-password a {
    text-decoration: none;
    color: gray;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-weight: bold;
}

.login-forgot-password a:hover {
    color: rgb(61 125 255);
    text-decoration: underline;
}