body {
    width: 100%;
    height: 100vh;
    background-image: url('../images/bg.webp');
    background-size: cover;
    display: flex;
    align-items: center;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
}

.login--side-img > img {
    width: 100%;
    border-radius: 12px;
}

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

.login--side-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-heading {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-heading img {
    width: 90px;
    display: block;
    margin: 0 auto;
}

.card {
    border-radius: 25px;
    border: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, .40);
}

.input-group-text {
    border-radius: 8px;
    padding: 12px 15px;
    border-color: #e9e9e9;
}

.form-control {
    border-radius: 8px;
    font-size: 1rem;
    padding: 12px 20px;
    border-color: #e9e9e9;
}

.btn {
    border-radius: 8px;
    padding: 12px 23px;
    font-weight: 700;
}

@media(max-width: 991px) {
    body {
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .login--side-form {
        padding: 50px 0;
    }

    .login--side-form form {
        width: 450px;
        text-align: center;
    }

    .login--side-form form .btn {
        width: 100%;
    }
}

@media(max-width: 575px) {
    .login--side-form {
        padding: 30px 20px;
    }

    .login--side-form form {
        width: 450px;
    }
}