:root {
    --hookedUp-custom-color: #606c38;
}

.text-primary {
    color: var(--hookedUp-custom-color);
}

body {
    font-family: "Manrope";
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.custom-header {
    background-color: #2B361C;
}

.header-class {
    padding: 21px 0px 21px 0px;
}


.logo-text {
    font-weight: 400;
    font-size: 23px;
    line-height: 100%;
    color: #D88F48 !important;

}


.custom-header .nav-link {
    margin-left: 15px;
    font-weight: 500;
}

main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.main-content {
    flex-grow: 1;
    padding: 20px;
    background-color: #ffffff;
    text-align: center;
}

.main-content h1 {
    color: #384c40;
}

/* Footer Styles */
.custom-footer {
    background-color: #2B361C;
    /* Dark green from image */
    color: #ffffff;
    /* White text */
    padding: 30px 0;
    font-size: 0.9rem;
}

.custom-footer .footer-logo .hash-icon {
    font-style: italic;
    font-weight: bold;
    margin-right: 5px;
    color: #c8a97e;
    /* Accent color for hash */
}

.custom-footer .footer-logo-text {
    font-weight: bold;
    font-size: 1.3rem;

}

.custom-footer a {
    color: rgb(159, 164, 130);
    text-decoration: none;
}

.custom-footer a:hover {
    color: #c8a97e;
    text-decoration: underline;
}

.custom-footer .footer-links {
    text-align: right;
}

.custom-footer .footer-links a {
    margin-left: 15px;
}

.custom-footer .social-icons a {
    color: #ffffff;
    font-size: 1.5rem;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.custom-footer .social-icons a:hover {
    color: #c8a97e;
}

.logo {
    max-width: 80px;
    width: 100%;
    height: 80px;
}

@media (max-width: 768px) {
    .custom-header .navbar-nav {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .custom-header .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .custom-footer .footer-logo,
    .custom-footer .footer-links,
    .custom-footer .social-icons {
        text-align: center;
        margin-bottom: 15px;
    }

    .custom-footer .footer-links a {
        margin: 0 8px;
    }

    .custom-footer .social-icons a {
        margin: 0 10px;
    }

    .custom-footer .footer-links {
        text-align: center;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-text {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0px;
    color: rgb(159, 164, 130);
}

.input-fields {
    max-width: 341px;
    width: 100%;
    padding: 18px 24px;
    border-radius: 20px;
    border: none;
    background-color: #F5F5F5;
}

.input-fields:focus-visible,
.input-fields:active {
    outline: none;
}

.btn-submit {
    max-width: 256px;
    width: 100%;
    border-radius: 16px;
    padding: 16px 24px;
    border-radius: 16px;
    background-color: #606C38;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: white;
    border: none;
}

.btn-submit:focus-visible,
.btn-submit:active {
    outline: none;
}

label {
    display: block;
    margin-bottom: 5px;

}

.logo-img {
    max-width: 45px;
    width: 100%;
    height: 45px;
}

.modal-dialog {
    width: auto;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal.show .modal-dialog {
    transform: none;
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
    max-width: 340px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}

.modal-backdrop {
    --bs-backdrop-zindex: 1040;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity);
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding-top: 0px;
    border-bottom: none;
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0;
}

.modal-body {
    text-align: center;
    flex: 1 1 auto;
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
}

.modal-footer>* {
    margin: calc(var(--bs-modal-footer-gap) * 0.5);
}



.login-button {
    background-color: var(--hookedUp-custom-colofr);
    color: #ffff;
    text-transform: uppercase;
    font-weight: 500;
}

.login-button:hover {
    background-color: var(--hookedUp-custom-color);
    color: white;
}

.text-danger {
    display: block;
}

.toast-header {
    border-bottom: none !important;
    background-color: transparent !important;
    padding: 0px !important;
}
.toast-body {
    padding: 0px !important; }

.toast {
    border: none !important;
    border-radius: 16px !important;
    padding: 16px !important; }
    