﻿
@media (max-width: 768px) {
    .cards {
        margin-top: 2vh;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
    }

    .card {
        width: 80% !important;
        background: red;
    }

    .card img {
        width: 200px;
    }

    .card-image-wrapper {
        display: flex;
        justify-content: center;
    }

    .patient-authentication-wrapper {
        width: 90% !important;
    }
}

@media (max-height: 690px) {
    .cards {
        margin-top: 2vh;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
    }

    .card-body > hr, .card-body > .card-text {
        display: none;
    }

    .card-body > .card-title {
        text-align: center;
    }
}

.cards {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 40px;
    height: 90vh;
}

.card {
    background: #fdfdfd;
    border: none;
    max-width: 700px;
}

.card img {
    padding: 40px;
}

.patient-authentication-wrapper {
    width: 600px;
    margin: auto;
    border: 1px solid lightgray;
    padding: 20px;
    margin-top: 50px;
    background: white;
    border-radius: 10px;
    cursor: default;
}

.patient-authentication-wrapper > form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
