@charset "UTF-8";

/* =========================================
   Component Styles
   Target: Cards, Modals, Buttons, Forms
   ========================================= */

/* --- Business Card Component --- */
.business-card {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    background: white;
}

.business-header {
    background: linear-gradient(135deg, #073a7e 0%, #052c65 100%);
    color: white;
    padding: 2rem 1.5rem;
}

.business-header h3 {
    font-weight: 700;
    margin: 0;
    font-size: 1.45rem;
    /* Reduced from 1.6rem */
}

.business-header p {
    margin-top: 5px;
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Modal Component --- */
.modal-img-container {
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

.modal-img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.modal-content-container {
    padding: 20px;
    max-height: 550px;
    overflow-y: auto;
}

.modal-title-custom {
    font-size: 18px;
    /* Reduced from 20px */
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #005caa;
}

.modal-body-custom {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 768px) {
    .modal-img-container {
        min-height: 250px;
    }
}

/* --- Container Helpers --- */
.register-container {
    padding-top: 30px;
    padding-bottom: 50px;
}

/* --- Form Components --- */
.search-area {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* --- Card Variants --- */
.login-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: white;
    height: 100%;
}

.login-header {
    background: linear-gradient(135deg, #073a7e 0%, #052c65 100%);
    padding: 15px;
    color: white;
    text-align: center;
}

.login-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.login-body {
    padding: 20px;
}

.btn-auth-custom {
    border-radius: 5px;
    font-weight: 600;
}

/* --- User Profile Card --- */
.user-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: white;
    height: 100%;
}

.user-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 15px;
    font-weight: 700;
    color: #333;
}

.user-body {
    padding: 20px;
    text-align: center;
}

.user-body .user-email {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.user-actions a {
    display: block;
    margin-bottom: 8px;
    color: #494949;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.user-actions a:hover {
    color: #073a7e;
}

.user-actions i {
    width: 20px;
    text-align: center;
    margin-right: 8px;
    color: #073a7e;
}

/* --- Registration Components --- */
.register-card {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.register-header {
    background: linear-gradient(135deg, #073a7e 0%, #052c65 100%);
    color: white;
    padding: 2.5rem 1rem;
    text-align: center;
}

.register-header h3 {
    font-weight: 700;
    margin: 0;
    font-size: 1.6rem;
    /* Reduced from 1.8rem */
}

.register-header p {
    margin-top: 10px;
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.terms-box {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px;
    height: 200px;
    overflow-y: auto;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.section-title {
    color: #073a7e;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 8px;
}

.btn-register {
    background-color: #073a7e;
    border-color: #073a7e;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-register:hover {
    background-color: #052c65;
    border-color: #052c65;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 58, 126, 0.3);
}