body {
    min-height: 100vh;
}

.card-content {
    border: 0;
    border-radius: 27.5px;
    overflow: hidden;
}

/* side image */

.side-img-wrapper {
    position: relative;
}

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

/* card-body */

.card-comtent .card-body {
    padding: 35px 24px;
    text-align: center;
}

@media (min-width: 423px) {
    .card-content .card-body {
        padding: 50px 60px;
    }
}

@media (min-width: 768px) {
    .card-content .card-body {
        text-align: left;
    }
}

.brand-wrapper {
    margin-bottom: 1.5rem;
}

.card-content-title {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 0.1rem;
}

/* Home Page */
.unknown .card-content-title {
    margin-bottom: 1.5rem;
}

.card-content-description {
    margin-bottom: 1.5rem;
}

.card-content .alert {
    max-width: 425px;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .card-content .alert {
        max-width: 320px
    }
}

.card-content-footer {
    font-size: 14px;
}

/* Theme - Light */

body[data-bs-theme="light"] {
    background-color: #d0d0ce;
}

[data-bs-theme="light"] .card-content {
    box-shadow: 0 10px 30px 0 rgba(172, 168, 168, 0.43);
}

[data-bs-theme="light"] .card-content-title {
    color: #000;
}

[data-bs-theme="light"] .card-content-footer {
    color: #919aa3;
}

/* Theme - Dark */

body[data-bs-theme="dark"] {
    background-color: var(--bs-secondary-bg);
}

[data-bs-theme="dark"] .card-content {
    box-shadow: 0 10px 30px 0 rgba(64, 71, 79, 1);
}

[data-bs-theme="dark"] .card-content-title {
    color: #fff;
}

[data-bs-theme="dark"] .card-content-footer {
    color: #5d666f;
}
