:root {
    --primary-color: #D16F4B;
    --secondary-color: #2E2E2E;
    --accent-color: #BFA76F;
    --light-color: #F5F3EF;
    --dark-color: #2E2E2E;
    --white-color: #ffffff;
    --gray-color: #858796;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    overflow-x: hidden;
    position: relative;
}

/* Dropshipping Background Animation */
.dropship-background {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #e9ecef 100%);
}

.floating-box {
    position: absolute;
    background-color: rgba(191, 167, 111,0.08);
    border-radius: 12px;
    animation: float 7s infinite linear;
}

.floating-box:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-duration: 7s;
    transform: rotate(15deg);
}

.floating-box:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 10%;
    animation-duration: 5s;
    animation-delay: 1.5s;
    transform: rotate(-1deg);
    background-color: rgba(209, 111, 75,0.15);
}

.floating-box:nth-child(3) {
    width: 160px;
    height: 160px;
    top: 30%;
    right: 5%;
    animation-duration: 6s;
    animation-delay: 1s;
    transform: rotate(-1deg);
}

.floating-truck,
.floating-package,
.floating-globe {
    position: absolute;
    color: rgba(191, 167, 111,0.08);
    font-size: 2rem;
    animation: float 10s infinite ease-in-out;
}

.floating-truck {
    top: 15%;
    right: 15%;
    animation-duration: 9s;
}

.floating-package {
    bottom: 20%;
    right: 20%;
    animation-duration: 8s;
    animation-delay: 2s;
    color: rgba(209, 111, 75,0.15);
}

.floating-globe {
    top: 40%;
    left: 20%;
    animation-duration: 12s;
    animation-delay: 1s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Auth Card */
.auth-card {
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e3e6f0;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.logo {
    width: 150px;
    margin-bottom: 0.5rem;
}

.company-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Form Controls */
.form-control {
    border: 1px solid #d1d3e2;

    border-radius: 0.35rem;
    transition: all 0.3s ease;
    box-shadow: none !important;
    font-size: 0.9rem;
}


.input-group-text {
    background-color: #f8f9fc;
    border: 1px solid #d1d3e2;
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.input-group .form-control:focus+.input-group-text {
    border-color: var(--primary-color);
    color: var(--primary-color);
}


/* Links */
a {
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .auth-card {
        padding: 1.75rem;
    }

    .benefit-item {
        margin-bottom: 0.75rem;
    }
}
