/* Custom properties for easy color management */
:root {
    --box-blue: #fff; /* Primary Blue (Professional) */
    --box-green: #28a745; /* Accent Green (Growth) */
    --light-blue-sky: #1cb5ea; /* Base light blue for sky */
    --text-dark: #001c55;
    --text-light: #fff;
    --font-family: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* overflow: hidden; /* Hide animation overflow */
}

/* -------------------- */
/* Animated Cloud Background - MULTIPLE LAYERS */
/* -------------------- */
.cloud-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-blue-sky); /* Base sky color */
    z-index: -1; 
    overflow: hidden; 
}

/* Base style for all cloud layers */
.cloud-background div {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%; /* Wider than screen to allow seamless movement */
    height: 100%;
    background-repeat: repeat-x; 
}

/* Layer 1: Distant (Small, Light, Slowest) */
.cloud-layer-1 {
    /* Replace with a small, light, high-up cloud texture */
    background-image: url('cloud-texture-light.png'); 
    background-size: 50% auto; /* Smaller clouds */
    opacity: 0.5;
    animation: moveCloudsSlow 15s linear infinite; /* Very slow */
}

/* Layer 2: Mid-ground (Medium size, slightly faster) */
.cloud-layer-2 {
    /* Replace with a medium density cloud texture */
    background-image: url('cloud-texture-mid.png'); 
    background-size: 80% auto; 
    top: 50%; /* Slightly offset vertical position */
    opacity: 0.6;
    animation: moveCloudsMedium 10s linear infinite; /* Medium speed */
}

/* Layer 3: Foreground (Largest, Closest, Fastest) */
.cloud-layer-3 {
    /* Replace with a large, low-hanging cloud texture */
    background-image: url('cloud-texture-heavy.png'); 
    background-size: 100% auto; /* Large clouds */
    top: 85%;
    opacity: 0.7;
    animation: moveCloudsFast 5s linear infinite; /* Fastest */
}


/* Animation Keyframes */
@keyframes moveCloudsSlow {
    0% { background-position: 0% 0%; }
    100% { background-position: -50% 0%; }
}

@keyframes moveCloudsMedium {
    0% { background-position: 0% 0%; }
    100% { background-position: -100% 0%; } 
}

@keyframes moveCloudsFast {
    0% { background-position: 0% 0%; }
    100% { background-position: -200% 0%; }
}


/* -------------------- */
/* Main Content Layout and Typography */
/* -------------------- */
.container {
    max-width: 500px;
    width: 90%;
    z-index: 10;
    text-align: center;
    padding: 20px 0;
}

.logo img {
    height: 150px; /* Adjust size */
    margin-bottom: 20px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

h1 {
    font-size: 2.8rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    max-width: 800px;
}

h2 {
    font-size: 1.4rem;
    color: var(--box-blue);
    font-weight: 400;
    margin: 10px 0 30px 0;
    max-width: 700px;
}

/* -------------------- */
/* Form Card Styling */
/* -------------------- */
.form-card {
    background: var(--text-light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px; /* Keep form focused */
 	text-align: left;
}

.form-card h3 {
    font-size: 1.7rem;
    color: var(--box-blue);
    margin-top: 0;
    margin-bottom: 25px;
    text-align: inherit;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box; 
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--box-green);
    outline: none;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--box-green);
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    margin-top: 15px;
}

.submit-btn:hover {
    background-color: #218838; /* Darker green */
}

.trust-message {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 25px;
}