:root {
    --white-color: #fff;
    --blue-color: #0d6efd;
    --gray-color: #6c757d;
}

.pages-sing-wrap {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: -1;
}

.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 7rem;
    padding: 0 2rem;
}

.img {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.login-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.img img {
    width: 500px;
}

form {
    width: 400px;
}

a {
    display: block;
    text-align: right;
    text-decoration: none;
    color: #999;
    font-size: 0.9rem;
    transition: .3s;
}

a:hover {
    color: #38d39f;
}

.btn {
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    outline: none;
    border: none;
    background-image: linear-gradient(to right, #32be8f, #38d39f, #32be8f);
    background-size: 200%;
    font-size: 1.2rem;
    color: var(--white-color);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin: 1rem 0;
    cursor: pointer;
    transition: .5s;
}

.btn:hover {
    background-position: right;
    color: var(--white-color);
}

@media screen and (max-width: 1280px) {
    .img img {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .login-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-gap: 2rem;
        justify-content: center;
    }

    img.mb-5.object-cover {
        margin-bottom: 15px !important;
    }

    .btn {
        border: 1px solid #ddd
    }

    .img img {
        width: 100%;
    }

    .login-container a {
        color: var(--white-color);
    }

    .login-content,
    .login-container form {
        width: 100%;
    }
}