/* Color Palette from your Logo */
:root {
    --blue: #1b75bb;
    --green: #8cc63f;
    --orange: #f7941e;
    --dark: #0f172a;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    /* Subtle gradient background using logo colors */
    background: radial-gradient(at 0% 0%, rgba(27, 117, 187, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(140, 198, 63, 0.1) 0px, transparent 50%);
}

.wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* Responsive Card */
.content-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 20px;
    width: 100%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Responsive Logo */
.main-logo {
    width: 100%;
    max-width: 160px; /* Desktop size */
    height: auto;
    margin-bottom: 30px;
}

/* Responsive Typography */
h1 {
    font-size: 2rem; /* Default mobile size */
    line-height: 1.3;
    margin-bottom: 15px;
    color: #6eb7ff;
}

.orange-text {
    color: var(--orange);
}

p {
    font-size: 0.95rem;
    color: #8497aa;
    margin-bottom: 35px;
    padding: 0 10px;
}

/* Progress Bar Responsive */
.progress-area {
    margin-bottom: 40px;
}

.labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 8px;
    color: var(--green);
    font-weight: 500;
}

.bar-bg {
    background: rgba(255,255,255,0.1);
    height: 10px;
    border-radius: 10px;
}

.bar-fill {
    width: 90%;
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--green));
    border-radius: 10px;
}

/* Responsive Form - Mobile First */
.notify-box .input-group {
    display: flex;
    flex-direction: column; /* Mobile by default */
    gap: 12px;
}

input {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.2);
    color: white;
    outline: none;
}

button {
    width: 100%; /* Mobile by default */
    padding: 16px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

/* Media Queries for Tablet & Desktop */
@media (min-width: 768px) {
    .content-card {
        padding: 60px 50px;
    }
    
    h1 {
        font-size: 2.8rem;
    }

    .notify-box .input-group {
        flex-direction: row; /* Desktop switch */
        background: rgba(0,0,0,0.2);
        padding: 6px;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,0.1);
    }

    input {
        border: none;
        background: transparent;
    }

    button {
        width: 180px;
    }
}

.social-footer {
    margin-top: 40px;
}

.links a {
    color: #64748b;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.links a:hover {
    color: var(--blue);
}