.container-fluid {
    width: 100vw;
    height: 100vh;

    background-image: linear-gradient(to right bottom, rgb(239, 246, 255), rgb(238, 242, 255), rgb(250, 245, 255));

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.container-fluid > * {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;

    gap: 64px;
    width: 100%;
}

.logo {
    width: 500px;
    max-width: 90%;
}
 
.login-form {
    background-color: white;
    border: 1px solid #F1F5F9;
    border-radius: 16px;
    padding: 56px 48px;
    backdrop-filter: blur(16px);
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;

    min-width: 320px;
}

.login-form > img {
    width: 80px;
    height: 80px;
}