:root {
    --bg-light: #f3f4f6;       
    --brand-green: #43982c;   
    --brand-blue: #0c5b97;    
    --text-dark: #111111;   
    --text-muted: #6b7280;   
    --card-bg: #ffffff; 
    --border-color: #d1d5db;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
}

.background-shapes {
    position: fixed; 
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: float 5s infinite alternate ease-in-out;
    opacity: 0.4;
}

.shape-1 {
    width: 350px; height: 350px;
    background: var(--brand-blue);
    top: 5%; left: 15%;
}
.shape-2 {
    width: 400px; height: 400px;
    background: var(--brand-green);
    bottom: 10%; right: 10%;
    animation-delay: -2s;
}
.shape-3 {
    width: 250px; height: 250px;
    background: #d1d5db; 
    top: 40%; left: 50%;
    animation-duration: 7s;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1.05); }
}

.loading-container {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.loader-box {
    width: 100%;
    max-width: 380px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 50px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loading-logo {
    width: 90px;
    height: auto;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 12px;
}

.spinner {
    width: 55px;
    height: 55px;
    border: 4px solid #e5e7eb; 
    border-top: 4px solid var(--brand-green);
    border-radius: 50%;
    margin-bottom: 25px;
    animation: spin 1s linear infinite; 
    box-shadow: 0 0 15px rgba(67, 152, 44, 0.15);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--text-dark);
    animation: pulseText 2s ease-in-out infinite; 
}

.sub-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

@keyframes pulseText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}