body {
    background-color: #ffffff;
}

#loading {
    width: 100%;
}

.field-width {
    width: min(425px, 100%);
}

.logo {
    width: 150px;
}

.vh-set {
    min-height: 100vh;
}

/* elements inside our center */
.main-content-container {
    width: min(425px, 100%);
    background-color: #ffffff;
    border-radius: 15px;
}

.main-content-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.title {
    color: #545454;
    font-weight: bold;
}

/* Password for toggle */
.password-wrapper {
    display: grid;
    grid-template-columns: 80% 20%;
    justify-content: center;
    align-items: center;
    background-color: #eff0ec;
    border-radius: 15px;
    height: 100%;
}

.toggle-eye-parent {
    background-color: #eff0ec;
}

.toggle-eye-icon {
    color: black;
}

.password-wrapper .toggle-password {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* submit form */
input {
    background-color: #eff0ec;
    border-radius: 15px;
    padding: 1rem;
}

form > a {
    align-self: flex-end;
}


/* Desktop convertion */
@media (min-width: 992px) {
    body {
        background-color: #f3f3f1;
    }
    .vh-set {
        min-height: calc(100vh - (9rem - 24px));
    }
}