/* ===============================
   BASE LAYOUT
================================ */
body {
    min-height: 100vh;
    background-color: cadetblue;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper {
    min-height: 100vh;
}

/* ===============================
   CONTAINER & CARDS
================================ */
.container {
    max-width: 1100px;
}

.card-group {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0.75rem;
    overflow: hidden;
}

.card {
    border: none;
}

/* ===============================
   LOGO CARD (CRITICAL FIX)
================================ */
.logo-card {
    flex: 0 0 220px;      /* CHANGE THIS TO RESIZE */
    max-width: 220px;
    background-color: #ffffff;
}

/* ===============================
   LOGO IMAGE
================================ */
.logo-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* ===============================
   COLORS & UI
================================ */
.myColor {
    background-color: tomato;
}

.myHr {
    height: 4px;
    background-color: #ffffff;
    border-radius: 100px;
    opacity: 1;
}

/* ===============================
   BUTTONS
================================ */
.myBtn {
    transition: background-color 0.25s ease;
}

.myBtn:hover {
    background-color: navy;
}

/* ===============================
   FORMS
================================ */
.input-group-text {
    background-color: #f8f9fa;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

/* ===============================
   ALERTS
================================ */
#logAlert,
#regAlert {
    margin-bottom: 1rem;
}

/* ===============================
   RESPONSIVE FIX
================================ */
@media (max-width: 768px) {
    .logo-card {
        flex: 0 0 140px;
        max-width: 140px;
    }
}

.sidebar-branch .branch-children {
    display: none;
    padding-left: 15px;
}

.sidebar-branch a {
    display: block;
}

.sidebar-branch.open .branch-children {
    display: block;
}

