
body {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    background: #f5f5f5 !important;
}

.auth-card {
    width: 100%;
    background: #fff;
    overflow: hidden;
    position: relative;

    display: flex;
    border-radius: 10px; margin-bottom: 40px;
}

.left-side {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-side {
    background: white;
    padding: 40px;

}

.right-side a {
    color: #6a11cb;
    text-decoration: none;
}

.right-side h2 {
    font-weight: 700;
    letter-spacing: normal;
    font-size: 28px
}

.nav-pills .nav-link.active {
    background-color: #6a11cb;
}

.form-control {
    border-radius: 10px;
    padding: 12px;
}

.btn-custom {
    background: #6a11cb !important;
    color: white !important;
    border-radius: 10px;
    padding: 10px;
}

.btn-custom:hover {
    background: #6a11cb !important;
    color: #fff;
}

.social-btn {
    border-radius: 10px;
}

@media(max-width: 768px) {
    .auth-card {
        flex-direction: column;
    }

    .left-side {
        width: 100%;
        text-align: center;
    }

    .right-side {
        width: 100%;
    }
}

.waves-logo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    width: 100%;
    padding: 15px 0;
    margin-bottom: 10px;
    fill: #000;
}

.waves-logo-header img {
    width: 120px;
}

.mission-card {

    border-radius: 10px;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
    padding: 40px 6rem;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
    z-index: 1;
}

.mission-card:before {
    background-color: #fff;
    background-color: #fff;
    background-image: linear-gradient(175deg, #7109b826, #00d1ff0d);
    border-radius: 10px;
    clip-path: polygon(0 0, calc(100% - 38px) 0, 100% 38px, 100% 100%, 0 100%);
    content: "";
    inset: 2px;
    position: absolute;
    z-index: -1;
}

.decorative-ellipse-2 {
    bottom: 0px;

    height: 255px;
    position: absolute;
    right: 0;
    transform: rotate(180deg);
    width: 255px;
}

.ring-svg {
    color: #a100ff;
}

.remember-me {
    display: flex;
    justify-content: space-between;
}