#myBgVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 101%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

#myLoginVideo {
    margin-top: -50px;
    left: 0;
    width: 100%;
    object-fit: fill;
    z-index: 0;
}

#myHomeBgVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.card-custom-outer{
    height: 420px;
    background-color: rgb(255, 255, 255, 0);
    margin-top: 50px;
}

.card-custom-inner{
    height: 550px;
    background-color: rgb(255, 255, 255, 0.35);
    margin-top: 40px;
}

.btn-custom-my{
    width: 155px !important;
}

.btn-custom-login{
    width: 100% !important;
}

.label-custom-login-input{
    border-radius: 10px;
}

.my-card {
    cursor: pointer;
    transform-style: preserve-3d;
    transform-origin: center right;
    transition: transform 0.5s;
}
.my-card.is-flipped {
    transform: translateX(0) rotateX(-180deg);
}
.card__face {
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    backface-visibility: hidden;
}

.card__face--front {
    /* margin-bottom: -50px; */
}

.card__face--back {
    margin-top: -80px;
    transform: rotateX(180deg);
}

.no-select {
  user-select: none;
  -webkit-user-select: none;
}


@keyframes updown {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

.scroll-hint {
    animation: updown 1s ease-in-out infinite;
}
