@media (min-width: 1440px) {

    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1440px;
    }
}

a {
    text-decoration: none;
}

.form-control:focus-visible,
.form-control:focus {
    box-shadow: none;
}


/************ HEADER ***************/
.navbar {
    background-color: #2b2f3b;
    padding: 0.6rem 1rem;
}

.navbar .form-control {
    background-color: #f2f4f6;
    border: none;
    border-radius: 2rem;
    padding-left: 1.2rem;
    width: 450px;
}

.navbar .btn-login {
    color: #fff;
    background: transparent;
    border-radius: 2rem;
    border: 1px solid transparent;
}

.navbar .btn-login:hover {
    color: #0d6efd;
    background: #fff;
}

.navbar .btn-register {
    background-color: #0d6efd;
    color: #fff;
    border-radius: 2rem;
    padding: 0.4rem 1.2rem;
    margin-left: 0.5rem;
    border: none;
}

.navbar .btn-register:hover {
    background-color: #0b5ed7;
}

.navbar-brand img {
    height: 60px;
    margin-right: 10px;
}

/************ MAIN PAGE ***************/

.hero-section {
    position: relative;
    background: url('../images/background_main.png') center/cover no-repeat;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 50vh;
    min-height: 510px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    height: 100%;
    margin: 0 auto;
}

.search-box {
    background: #fff;
    color: #000;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    margin-top: 2rem;
}

.search-box .nav-link {
    color: #0d6efd;
}

.search-box input {
    border-radius: 0.5rem;
}

.counter-box {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #fff;
}

.counter-box .number {
    background: #fff;
    color: #000;
    font-weight: bold;
    border-radius: 0.25rem;
    padding: 0 4px;
    margin: 0 1px;
}

/************ LOTS CATD ***************/
.swiper-slide {
    height: auto !important;
}

.auction-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.auction-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auction-card .card-body .bottom-info {
    margin-top: auto;
}


/************ FOOTER ***************/
footer {
    background-color: #2b2f3b;
    color: white;
}

/************ REGISTRATION ***************/
.signup-wrapper .signup-left .progress {
    height: 5px;
}

/************ LOGIN ***************/

.login-wrapper,
.signup-wrapper {
    min-height: 100vh;
}

.login-left,
.signup-left {
    max-width: 660px;
    width: 100%;
}

.login-icon {
    width: 56px;
    height: 56px;
    background: #e9f2ff;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.login-right,
.signup-right {
    background: url('https://images.unsplash.com/photo-1603386329225-868f9b1ee6c9?q=80&w=2000') center / cover no-repeat;
}

@media (max-width: 991px) {
    .login-right {
        display: none;
    }
}