body {
    font-family: "Roboto", sans-serif;
    background: linear-gradient(315deg, rgb(189, 192, 198) 3%, rgb(86, 220, 255) 38%, rgb(4, 140, 166) 68%, rgb(1, 65, 78) 98%);
    min-height: 100vh;
    margin: auto;
    overflow: auto;
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;

}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}

.brand-wrapper {
    margin-bottom: 19px;
}

.brand-wrapper .logoDetails {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 5px solid #0b1229;

}

.brand-wrapper .logo {
    height: 90px;
}

.brand-wrapper .timeDetails {
    color: #0B1A43
}

.login-card {
    border: 0;
    border-radius: 27.5px;
    box-shadow: 0 10px 30px 0 rgba(172, 168, 168, 0.43);
    overflow: hidden;
}

.login-card-img {
    border-radius: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.login-card .card-body {
    padding: 50px 10px 20px 80px;
}

@media (max-width: 422px) {
    .login-card .card-body {
        padding: 35px 24px;
    }
}

.login-card-description {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 23px;
    color: #0b1229;
}

.login-card form {
    max-width: 326px;
}

.login-card .form-control {
    border: 1.5px solid #000;
    padding: 8px 16px;
    margin-bottom: 12px;
    min-height: 40px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.login-card .form-control::-webkit-input-placeholder {
    color: #919aa3;
}

.login-card .form-control::-moz-placeholder {
    color: #919aa3;
}

.login-card .form-control:-ms-input-placeholder {
    color: #919aa3;
}

.login-card .form-control::-ms-input-placeholder {
    color: #919aa3;
}

.login-card .form-control::placeholder {
    color: #919aa3;
}

.login-card .login-btn {
    width: 100%;
    padding: 10px 18px;
    background-color: #0b1229;
    border-radius: 20px;
    font-size: 15px;
    font-weight: bold;
    line-height: 18px;
    color: #fff;
    margin-bottom: 20px;
    border: none;
    transition: all 0.3s ease;
}

.login-card .login-btn:hover {
    border: 1px solid #0b1229;
    background-color: transparent;
    color: #0b1229;
    border-radius: 12px;
    transform: scale(1.02);
}

.login-card .checkbox {
    width: 13px;
    height: 13px;
    accent-color: #000039;
    cursor: pointer;
}

.login-card .label[for="remember"] {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.login-card .forgot-password-link {
    font-size: 14px;
    color: #919aa3;
    margin-bottom: 12px;

}

.login-card-footer-text {
    font-size: 16px;
    color: #0d2366;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .login-card-footer-text {
        margin-bottom: 24px;
    }
}

.login-card-footer-nav a {
    font-size: 14px;
    color: #919aa3;
}

.checkbox {
    width: 13px;
    height: 13px;
    accent-color: #000039;
    cursor: pointer;
}

label[for="remember"] {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.socialLoginDiv {

    width: 90%;
}

.dividerContainer {
    width: 85%;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ddd;
    margin: 5px;
}

.formContainer {
    width: 90%;!important;
}



