.site-header,
.site-footer {
    display: none;
}

body {
    padding: 0;
}

.section {
    background-color: #f7f0e1;
}

.social-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn.google {
    color: #DB4437;
}

.social-btn.facebook {
    color: #1877F2;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.custom-input {
    position: relative;
    width: 100%;
}

.custom-input i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #41896B;
    font-size: 20px;
}

.custom-input input::placeholder {
    color: #41896B;
    opacity: 1;
}

.custom-input input {
    border-radius: 10px;
    height: 48px;
    padding-inline-start: 45px;

}

.custom-input input:focus {
    outline: none;
    box-shadow: 0 0 0 1px #41896B;
}

.countdown {
    position: relative;
}

.countdown .box-outer {
    position: absolute;
    margin-inline-start: -0.5rem;
}

.countdown .box-outer .box {
    background-color: #EEF278;
    box-shadow: 0px 0px 0px 15px #f7f0e1;
    border-radius: 1rem;
    margin-inline-start: 0.5rem;
    padding: 1.5rem 2rem;
}

.countdown .box-outer .box h2 {
    color: #331908;
    font-family: "Montserrat";
    font-size: 3.5rem;
    font-weight: 800;
}

.countdown .box-outer .box h3 {
    color: #216011;
    font-family: "Montserrat";
}

.countdown .box-outer .curved-1,
.countdown .box-outer .curved-2 {
    background-image: url(../../images/arc-2.png);
    width: 40px;
    height: 40px;
    position: absolute;
}

.countdown .box-outer .curved-1 {
    top: -48px;
    right: -6px;
}

.countdown .box-outer .curved-2 {
    bottom: -7px;
    left: -40px;
}

.countdown .navbar-brand {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.authentication .info {
    background-color: rgb(67 96 17 / 50%);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    color: #fff;
    padding: 1rem;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.authentication .info .d-flex .flex-shrink-0 {
    background-color: #fff;
    border-radius: 50%;
    height: 36px;
    width: 36px;
    padding: 5px;
    text-align: center;
}

.authentication .info .d-flex i {
    color: #5CD75F;
}

@media (min-width: 992px) {
    .authentication .card{
        border-radius: 1rem;
    }
}
@media (max-width: 991.98px) {
    .section, .container{
        padding: 0;
    }
    .authentication .card{
        border: 0;
    }
}