
/* =========================
   GLOBAL STYLES
   ========================= */

body{
    margin:0;
    font-family: 'Source Sans 3', Arial, sans-serif;
    background:#ffffff;
    color:#333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
}



.container{
    max-width:420px;
    margin:auto;
}

.section{
    padding:0 20px;
    text-align:center;
    margin-bottom: 48px;
}

/* =========================
   BELOW THE FOLD BACKGROUND
   ========================= */

.section.below{
    background:#F6F7F9;
    padding:16px 20px;
    margin-bottom: -20px;
}

/* =========================
   LOGO
   ========================= */

.logo{
    width:140px;
    margin:20px auto;
    display:block;
}

/* =========================
   ACTIVATION ICON
   ========================= */

.activation-icon-wrapper{
    width:90px;
    height:90px;
    background:#e8f5e9;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:40px auto 15px auto;
}

.activation-icon{
    width:40px;
}

/* =========================
   BUTTON
   ========================= */

.btn{
    display:block;
    background:#43a047;
    color:white;
    text-decoration:none;
    padding:22px 16px;
    border-radius:50px;
    font-weight:bold;
    font-size:26px;
    margin:15px 10px;
    text-align:center;

    /* animation */
    animation: pulse 1.2s infinite;
    transition: transform 0.15s ease, box-shadow 0.15s ease;

    box-shadow:0 6px 14px rgba(0,0,0,0.15);
}

button.btn{
    width:94%;
    border:none;
    outline:none;
    cursor:pointer;
    font-family:inherit;
}

/* =========================
   CTA PULSE ANIMATION
   ========================= */

@keyframes pulse{

    0%{
        transform:scale(1);
        box-shadow:0 6px 14px rgba(0,0,0,0.15);
    }

    50%{
        transform:scale(1.04);
        box-shadow:0 10px 20px rgba(0,0,0,0.25);
    }

    100%{
        transform:scale(1);
        box-shadow:0 6px 14px rgba(0,0,0,0.15);
    }

}

/* button press effect */

.btn:active{
    transform:scale(0.96);
    box-shadow:0 3px 6px rgba(0,0,0,0.2);
}

button:disabled{
opacity:.5;
pointer-events:none;
animation:none;
}

/* =========================
   STATUS TEXT
   ========================= */

.status{
    color:#43a047;
    font-size:16px;
}

/* =========================
   HEADINGS
   ========================= */

h1{
    color:#6A7282;
    font-size:29px;
    font-weight:400;
    margin-bottom: 48px;
}

h2{
    font-size:24px;
}

h3{
    font-size:20px;
    margin:8px;
}

p{
    font-size:16px;
    line-height:1.5;
   
}

/* =========================
   STEPS
   ========================= */

.steps{
    max-width:250px;
    margin:25px auto;
}

.step{
    display:flex;
    align-items:flex-start;
    position:relative;
    padding-bottom:25px;
}

.step:not(:last-child)::after{
    content:"";
    position:absolute;
    left:18px;
    top:42px;
    width:2px;
    height:22px;
    background:#B2BCCC;
}

.step-circle{
    width:32px;
    height:32px;
    border-radius:50%;
    border:3px solid #43a047;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    color:#43a047;
    margin-right:12px;
}

.step-text{
    text-align:left;
}

.step-label{
    font-size:13px;
    color:#888;
    letter-spacing:1px;
    font-weight:600;
}

.step-title{
    font-size:20px;
    font-weight:600;
}

/* =========================
   FEATURES
   ========================= */

.feature{
    margin:40px 0;
}

.feature img{
    width:70px;
    margin-bottom:10px;
}

/* =========================
   DISCLAIMER
   ========================= */

.disclaimer{
   

    text-align:center;

padding: 16px;
justify-content: center;
align-items: center;
align-self: stretch;
font-size:12px;

    border-radius: 8px;
border: 1px solid #CECECE;
margin-top:32px;
margin-bottom:32px;
}

/* =========================
   FOOTER
   ========================= */

.footer{
    background:white;
    color:#A8A8A8;
    padding:25px 15px;
    font-size:13px;
    text-align:center;
    margin-top:40px;
}

.footer a{
   color:#A8A8A8;
    margin:0 10px;
    text-decoration:none;
}

/* =========================
   FEATURE CARDS
   ========================= */

.features-cards{
    padding:20px;
    background-color: #F6F7F9;
}

.card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:28px;
    border: 1px solid #E5E5E5;
}

.card img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
}

.card-content{
    padding:8px 20px 26px 20px;
    text-align:center;
}

.card-content h3{
    font-size:22px;
    margin-bottom:12px;
    font-weight:700;
}

.card-content p{
    font-size:15px;
    line-height:1.5;
    color:#666;
    margin:0;
}


/* =========================
EMAIL PAGE
========================= */

.hero{
padding:10px 20px 10px 20px;
text-align:center;
}

.hero h1{
font-size:42px;
font-weight:700;
margin:0;
line-height:44px;
}

.hero span{
color:#43a047;
}

/* EMAIL INPUT */

.input-wrapper{
margin:30px 20px;
position:relative;
}

.email-input{
width:100%;
padding:25px 20px 25px 55px;
border-radius:1000px;
border:2px solid #43a047;
font-size:18px;
outline:none;
box-sizing:border-box;
background:white;
}

.email-icon{
position:absolute;
left:20px;
top:50%;
transform:translateY(-50%);
width:22px;
}

.email-input:focus{
border-color:#2f8e3f;
box-shadow:0 0 0 3px rgba(67,160,71,.15);
}

.input-wrapper.error .email-input{
border-color:#e53935;
}

.error-text{
font-size:14px;
color:#e53935;
margin-top:8px;
display:none;
}

.input-wrapper.error .error-text{
display:block;
}

.helper{
font-size:14px;
color:#7d7d7d;
margin-bottom:100px;
text-align: center;
}
