@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Raleway&display=swap');

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    height: 100%;
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.main-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.login-body {
    background: #e4e4e4;
}

.register-body {
    background: #e4e4e4;
}

.navbar {
    font-family: 'Poppins', sans-serif !important;
}

.register-left, .login-left {
    background-color: #49372d;
    color: white;
}

h1, h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: black;
}

h4 {
    font-family: 'Poppins', sans-serif;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

form {
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px;
}

input {
    height: 40px !important;
}

.btn-register {
    background-color: #49372d !important;
    color: white !important;
    transition: background-color 0.3s ease;
}

.bg-register {
    background-color: #49372d !important;
    color: white !important;
    transition: background-color 0.3s ease;
}

.btn-register:hover {
    background-color: #5a4231 !important;
}

.login, .forgot-password {
    color: #49372d;
}

.active {
    background-color: #49372d !important;
    box-shadow: none !important;
    border-bottom: white !important;
}

footer {
    margin-top: auto;
    background-color: #49372d;
    color: white;
}

.navbar-collapse {
    flex-grow: 1;
    justify-content: flex-end;
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    padding: 58px 0 0;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 10px 0 rgb(0 0 0 / 5%);
    width: 250px;
    z-index: 600;
}

.sidebar .active {
    border-radius: 5px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: 0.5rem;
    overflow-x: hidden;
    overflow-y: auto;
}

.index-body {
    padding-left: 250px;
    transition: padding-left 0.3s ease;
}

.index-body.sidebar-collapsed {
    padding-left: 80px;
}

#membersTable th, #membersTable td {
    padding: 12px 15px;
    text-align: left;
}

@media (max-width: 991px) {
    .sidebar {
        position: fixed;
        left: -250px;
        display: block;
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }
    .sidebar.show {
        transform: translateX(250px);
    }
    .main-content {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
    .index-body {
        padding-left: 0;
    }
}
.form-outline .form-control:focus {
    background-color: transparent !important;
    box-shadow: none !important;
}
.search-wrapper {
    max-width: 500px;
    margin: 50px auto;
}
.form-control:focus {
    box-shadow: none;
}

