.card {
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    overflow: hidden;
    width: 750px;
    max-width: 90vw;
    justify-content: space-evenly;
}
.card-header, .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.card-header {
    background-color: #04a9f55c;
    text-align: center;
    flex: 0.1;
}
.card-body {
    flex: 1.9;
}
.card-body form {
    width: auto;
}
.auth-wrapper .auth-content {
    width: auto;
}
@media (max-width: 768px) {
    .card {
        flex-direction: column;
        height: auto;
    }
    .card-header {
        flex: none;
        width: 100%;
        border-right: none;
    }
    .card-body {
        flex: none;
        width: 100%;
    }
}