body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

input {
    outline: none;
}

.opacity-zero {
    opacity: 0;
}

.welcome-card {
    height: 300px;
    width: 500px;
    background-color: #F4F3FB;
    outline: 1px solid lightgray;
    border-radius: 10px;
    box-shadow: 0 0 13px rgb(0 0 0 / 10%);
    display: flex;
    margin: 15px;
}

.welcome-card-left-container {
    background-color: #1E3190;
    border-radius: 10px 0 0 10px;
    width: 22%;
    display: flex;
    justify-content: center;
}

.welcome-card-left-container img {
    margin-top: 24px;
    height: 71px;
    width: 60px;
}

.welcome-card-right-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 78%;
}

h1 {
    margin-top: 24px;
    margin-bottom: 36px;
}

.user-container, .password-container {
    display: flex;
}

.user-container {
    margin-bottom: 16px;
}

.password-container {
    margin-bottom: 4px;
}

.width75 {
    width: 75px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 24px;
}

.welcome-card-right-container input {
    height: 30px;
}

#wrong-login-data-container {
    font-size: 10px !important;
    padding-left: 70px;
    font-style: italic;
}

.button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    height: 100%;
    margin-left: 22%;
}

.welcome-card-right-container button {
    border: 0;
    background-color: #1E3190;
    color: white;
    border-radius: 5px !important;
    height: 30px;
    padding-left: 18px;
    padding-right: 18px;
    margin-right: 56px;
    margin-bottom: 24px;
}

.hint-container {
    font-size: 10px !important;
    padding-left: 70px;
    font-style: italic;
    margin-bottom: 15px;
    margin-top: 10px;
}

.guest-login {
    white-space: nowrap;

}

@media (max-width:430px) {
    .welcome-card {
        flex-direction: column;
        height: 385px;
    }

    .welcome-card-right-container {
        width: 100%;
    }

    .welcome-card-left-container {
        width: 100%;
        border-radius: 10px 10px 0 0;
    }

    .welcome-card-left-container img {
        margin-bottom: 24px;
    }

    h1 {
        margin-bottom: 16px !important;
    }

    #login {
        margin-top: 7px;
    }
}

@media (min-width: 2000px) {
    .welcome-card {
        height: 600px;
        width: 1000px;
        margin: 10px;
    }

    h1 {
        font-size: 5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .width75 {
        font-size: 3.5rem;
        margin-left: 150px;
    }

    .welcome-card-right-container input {
        height: 50px;
        width: 300px;
        margin-top: 20px;
    }

    #wrong-login-data-container {
        font-size: 1.5rem !important;
    }

    .hint-container span {
        font-size: 1.5rem;
    }

    input[type="text"] {
        font-size: 2rem;
    }

    .button-container {
        justify-content: center;
    }

    .welcome-card-right-container button {
        border: 0;
        background-color: #1E3190;
        color: white;
        border-radius: 5px !important;
        height: 80px;
        padding-left: 70px;
        font-size: 1.5rem;
        padding-right: 70px;
        margin-right: 56px;
        margin-bottom: 24px;
    }
}