.login-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 20px;
    color: #333;
}

.login-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-container button {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.login-container button:hover {
    background-color: #45a049;
}

.links {
    margin-top: 15px;
}

.links a {
    text-decoration: none;
    color: #007BFF;
    margin: 5px 0;
    display: block;
}

.links a:hover {
    text-decoration: underline;
}

.form-field--required .form-label::after {
    content: "*";
    color: red;
    margin-left: 0.25rem;
}

.card-title {
    color: #0053ab;
}
.card-clinic {
    /* display: flex;
    align-items: flex-start; */
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.card-clinic:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0.7;
    background-color: rgba(49, 215, 241, 0.932);
}

.card-image-container {
    display: flex;
    flex-direction: column; /* Chuyển thành cột */
    align-items: center; /* Canh giữa */
    padding: 10px;
    /*border-right: 1px solid #ddd;*/
}

.card-image-container img {
    width: 150px;
    height: 150px;
    /* object-fit: cover; */
    margin-bottom: 10px; /* Khoảng cách giữa ảnh và nút */
}

.card-body {
    padding: 15px;
    flex: 1;
}

.card-body h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-body p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.btn-book {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
    width: 100%; /* Để nút rộng bằng container */
    text-align: center;
}

.btn-book:hover {
    background-color: #0056b3;
}

.card-text i {
    color: #0077c1; /* Màu icon */
    margin-right: 8px; /* Khoảng cách giữa icon và nội dung */
    font-size: 1.1rem; /* Kích thước icon */
}

.card-text {
    display: flex;
    align-items: center; /* Canh giữa icon và text */
    margin-bottom: 8px;
    color: #0077c1;
}

.highlight {
    color: red; /* Màu đỏ */
    font-weight: bold; /* Tô đậm số */
}
/* Responsive Grid Layout */
@media (min-width: 768px) {
    .col-6 {
        width: 48%;
        float: left;
        margin: 1%;
    }
}

@media (max-width: 767px) {
    .col-6 {
        width: 100%;
        margin: 0;
    }

    .card-title {
        font-size: 16px;
    }

    .pbmit-btn {
        padding: 15px 30px;
        font-size: 13px;
    }
}

.pbmit-btn {
    display: inline-block;
    text-decoration: none;
    font-family: var(--pbmit-btn-typography-font-family);
    font-size: var(--pbmit-btn-typography-font-size);
    font-weight: var(--pbmit-btn-typography-variant);
    line-height: var(--pbmit-btn-typography-line-height);
    letter-spacing: 0.2px;
    padding: 10px 20px;
    border-radius: 0;
    text-transform: none;
    background-color: var(--pbmit-global-color);
    border: none;
    color: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
    outline: none !important;
    -webkit-font-smoothing: antialiased;
    text-align: center;
}

.g-recaptcha iframe {
    height: 78px !important;
}