﻿body {
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 80px;
}

.footer-bottom {
    background-color: #130202;
    padding: 6px 0 4px;
    position: relative;
}

.body-content {
/*    height: 828px;*/
    /*   width: 800px;*/
    text-align: center;
    /* background-color: #FFFFFF;*/
}

.copy-right-text a {
    color: #68cada;
}

    .copy-right-text a:hover,
    .footer-menu ul li a:hover {
        color: #68cada;
    }

.alert {
    padding: 10px;
    margin-bottom: 5px;
}

.alert-dismissable .close {
    right: 0px;
}
/* Custom Styles to enhance the menu links */
/* Custom Styles for Navbar */
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Adjust as needed */
}
.navbar-custom .navbar-nav .nav-item .nav-link {
    padding: 0.5rem 0.5rem;
    margin: 0.05rem;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    background-color: #8b2026;
    color: #ffffff;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    width: auto; /* Set width to auto to adjust based on content */
}

    /* Hover and active styles for buttons */
    .navbar-custom .navbar-nav .nav-item .nav-link:hover,
    .navbar-custom .navbar-nav .nav-item .nav-link:focus,
    .navbar-custom .navbar-nav .nav-item .nav-link:active {
        background-color: #EEAE02;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
        border-color: #c0c0c0;
    }

    .navbar-custom .navbar-nav .nav-item .nav-link:not(:last-child) {
        border-right: 2px solid #c0c0c0;
    }
.login-section {
    /* Example styling – customize these values as desired */
    font-size: 14px;

    background-color: #ff6a00;
    display: inline-block;
    /* padding: 5px 10px;*/
    border-radius: 5px;
}
/* Rounded corners for dropdown toggles */
.navbar-custom .navbar-nav .nav-item.dropdown .nav-link {
    border-radius: 0.5rem 0.5rem 0 0;
}


/* General Section Spacing*/
.section-padding{
    padding: 40px 0 0 0;
}
/*@media (max-width: 1481px) {
    .navbar-custom .navbar-nav {
        flex-wrap: wrap;
    }
}*/


@keyframes scroll {
    0% {
        transform: translateX(0); /* Start from initial position */
    }

    100% {
        transform: translateX(-100%); /* Scroll to end */
    }
}

.page-element-title {
    font-size: 29px;
    font-family: Arial;
    padding: 5px;
    font-weight: 600;
}

.paragraph-text {
    font-family: Cambria, Cochin, Georgia, Times, Times New Roman, serif;
    font-size: 22px;
    text-align: justify-all;
}

.success-color-dark {
    background-color: #461e12 !important
}

.success-color-crimson {
    background-color: #581114 !important
}
.text-regular {
    color: #225d7a;
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
}
.feature-box {
    position: relative;
    padding: 15px 20px 15px 70px;
}
.form-wrapper{
    max-width:500px;
    width:100%;
    margin:0 auto;
}

/* Only this gets blurred */
.blur-background {
    filter: blur(6px);
    pointer-events: none;
}

/* Overlay behind modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
 /*   backdrop-filter: blur(5px);*/
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1050;
}

/* Modal content */
.auth-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    z-index: 1051;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    overflow:hidden;
}
.auth-register-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    z-index: 1051;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    overflow: hidden;
}
/*.login-header {
    background-color: #2196f3;*/ /* ACADA Store blue */
    /*border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}*/
.login-header {
    background-color: #8b2026; /* Bootstrap primary blue */
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 0.75rem 1rem;
    position: relative;
    font-size: 1.4rem;
}

.floating-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: white;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 1060;
}
.input-icon-wrapper {
    position: relative;
    min-height: 40px; /* fixed height to prevent shifts */
    /*padding-bottom: 1.5rem; /* reserve space for validation msg */
}

.input-icon-start {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
}

.input-icon-end {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
}

.has-icons .form-control {
    padding-left: 2.5rem; /* space for start icon */
    padding-right: 2.5rem; /* space for end icon */
}

.validation-message {
    position: absolute;
    bottom: -2.5rem;
    left: 0;
    font-size: 0.875rem;

}

/* Custom Button content */

.btn-success-custom {
    color: #fff;
    background-color: #8b2026;
    border-color: #8b2026;
}

    .btn-success-custom:hover {
        color: #fff;
        background-color: #EEAE02;
        border-color: #146c43;
    }

    .btn-check:focus + .btn-success-custom, .btn-success-custom:focus {
        color: #fff;
        background-color: #157347;
        border-color: #146c43;
        box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
    }

    .btn-check:checked + .btn-success-custom, .btn-check:active + .btn-success-custom, .btn-success-custom:active, .btn-success-custom.active, .show > .btn-success-custom.dropdown-toggle {
        color: #fff;
        background-color: #146c43;
        border-color: #13653f;
    }

        .btn-check:checked + .btn-success-custom:focus, .btn-check:active + .btn-success-custom:focus, .btn-success-custom:active:focus, .btn-success-custom.active:focus, .show > .btn-success-custom.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
        }

    .btn-success-custom:disabled, .btn-success-custom.disabled {
        color: #fff;
        background-color: #8b2026;
        border-color: #8b2026;
    }
.btn-google {
    background-color: #db4437;
    color: white;
    border: none;
}

    .btn-google:hover {
        background-color: #c33d2e;
        color: white;
    }

.btn-facebook {
    background-color: #3b5998;
    color: white;
    border: none;
}

    .btn-facebook:hover {
        background-color: #2d4373;
        color: white;
    }

.btn-microsoft {
    background-color: #2F2F2F;
    color: white;
    border: none;
}

    .btn-microsoft:hover {
        background-color: #1e1e1e;
        color: white;
    }
