html,
body {
    height: 100%;
}

.global-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #102431  url("../images/login/patt-2.png") !important;
    background-position: center center;
    background-size: 40px !important;
    
}
.bg-pink{
    background: #f84bb6  url("../images/login/patt-2.png") !important;
    background-position: center center;
    background-size: 40px !important;
}
.bg-yellow{
    background: #ffc007  url("../images/login/patt-2.png") !important;
    background-position: center center;
    background-size: 40px !important;
}

    
.container-fluid {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.main-container {
    /* height: 37.1rem; */
    height: 100vh;
}

form {
    /* padding-top: 10px; */
    font-size: 14px;
    /* margin-top: 30px; */
}

.card-title {
    font-weight: 300;
}

.btn {
    font-size: 14px;
    margin-top: 20px;
}


.card-body {
    margin-left: 100px;
    margin-top: 90px;
    width: 60%;
    align-items: center;
    height: auto;
    /* background: #fff; */
    background-color: rgb(0 0 0 / 26%);
    flex: 0 0 auto;
}

.login-form {

    height: 80%;
    background: transparent;
    align-items: start;
    border: none;
}


.sign-up {
    text-align: center;
    padding: 20px 0 0;
}

.alert {
    margin-bottom: -30px;
    font-size: 13px;
    margin-top: 20px;
}

.image img {
    z-index: 10;
    width: 90%;
    height: auto;
    margin-top: 80px;
}

.image img {
    animation-name: floating;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 55px;
    position: relative;
    top: -1120px;
}

.form-control-sm{
    min-height: 50px;
    box-shadow: none;
    border: 1px solid rgba(241, 241, 241, 0.25);
    padding: 10px 15px;
    background-color: transparent;
    color: #fff;
}
.form-control:focus {
    box-shadow: none;
    border: 1px solid #fff;
    padding: 10px 15px;
    background-color: transparent;
    color: #fff;
}
.form-control-sm::placeholder{
    /* color: #b8b8b9; */
    color: #fff;
}
.form-check-label{
    color: #fff;
    font-size: 15px;
}
.form-check-input{
    background-color: transparent;
    /* border:1px solid #dcdcdc; */
    border:1px solid #fff;
}
.submit-btn{
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    border-radius: 3px;
    background-color: #ffbd3f;
    padding: 10px 36px;
    transition: all 0.3s ease-in-out;
}
.submit-btn:hover{
    background-color: transparent;
    border: 1px solid #ffbd3f;
    color: #ffbd3f;
}
.card-title{
    font-size: 20px;
}
.logo img{
    width: 50%;
}
.form-check-input:checked{
    background-color: #ffbd3f;
    border-color: #ffbd3f;
}
.ihpl-logo img {
    margin-left: 100px;
}
@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 95px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

.circleone {
    width: 730.5px;
    height: 700.5px;
    border-radius: 50%;
    position: absolute;
    position: RELATIVE;
    left: -175px;
    top: -24px;
    background: transparent;
    border: 1px;
    border-color: #314348;
    border-style: solid;
    animation: floatAnimation 14s ease-in-out infinite;
}

.circle {
    width: 415px;
    height: 400px;
    border-radius: 50%;
    position: absolute;  
    position: relative;
    left: -30px;
    top: -560px;
    background: transparent;
    border: 1px;
    border-color: #2f4048;
    border-style: solid;
    animation: floatAnimation 12s ease-in-out infinite;
}
.card {
    box-shadow: none !important;
}
@keyframes floatAnimation {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, 50px);
        /* Adjust floating distance */
    }

    100% {
        transform: translate(0, 0);
    }
}
@media (max-width: 768px) {
    .main-container {
      flex-direction: column-reverse;
    }

    .login-form,
    .image {
      margin-bottom: 20px;
    }

    .card-title {
      font-size: 1.2rem;
    }

    .submit-btn {
      font-size: 0.9rem;
    }
  }