body {
    font-family: "Roboto", sans-serif;
    background-color: #f8fafb;
    font-size: 16px !important;
    width: 100%;
    height: 100vh;
}
.content {
    height: 100%;
    background-image: url(../images/back_login.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.div-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgb(255 255 255 / 65%);
    padding: 2.5em;
    border-radius: 25px;
    transition: .4s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.4) 1px 2px 2px;
    width: 350px;
    height: 450px;
}

/* .form:hover {
    transform: translateX(-0.5em) translateY(-0.5em);
    border: 1px solid #171717;
    box-shadow: 10px 10px 0px rgb(102 102 102 / 65%);
} */

.heading {
    color: black;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

.input {
    border-radius: 5px;
    border: 1px solid whitesmoke;
    background-color: rgb(245 245 245 / 65%);
    outline: none;
    padding: 0.7em;
    transition: .4s ease-in-out;
}

.input:hover {
    box-shadow: 6px 6px 0px #969696,
        -3px -3px 10px #ffffff;
}

.input:focus {
    background: #ffffff;
    box-shadow: inset 2px 5px 10px rgba(0, 0, 0, 0.3);
}

.form .btn {
    margin-top: 2em;
    align-self: center;
    padding: 0.7em;
    padding-left: 1em;
    padding-right: 1em;
    border-radius: 10px;
    border: none;
    color: black;
    transition: .4s ease-in-out;
    font-size: 16px;
    box-shadow: rgba(0, 0, 0, 0.4) 1px 1px 1px;
}

.form .btn:focus-visible {
    border: none;
    outline: none !important;
}

.form .btn:hover {
    box-shadow: 6px 6px 0px #969696,
        -3px -3px 10px #ffffff;
    transform: translateX(-0.5em) translateY(-0.5em);
}

.form .btn:active {
    transition: .2s;
    transform: translateX(0em) translateY(0em);
    box-shadow: none;
}