:root {
    --navy: #0f2a4a;
    --navy-dark: #0a1c33;
    --accent: #1e8f6f;
    --accent-dark: #166f56;
    --bg: #f7f9fb;
    --text: #1c2733;
    --muted: #5b6b7a;
    --border: #e1e7ec;
    --radius: 10px;
}

* { box-sizing: border-box; }

/*body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}*/


/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f8fb;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/* Header */

.header{
    position:sticky;
    top:0;
    width:100%;
    background:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
    z-index:999;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:85px;
}

/* Logo */

.logo img{
    height:58px;
    transition:.3s;
}

.logo img:hover{
    transform:scale(1.04);
}

/* Navigation */

.navbar ul{
    display:flex;
    align-items:center;
    list-style:none;
    gap:35px;
}

.navbar ul li a{
    position:relative;
    text-decoration:none;
    color:#17375E;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.navbar ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:#18b04b;
    border-radius:10px;
    transition:.35s;
}

.navbar ul li a:hover,
.navbar ul li a.active{
    color:#18b04b;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after{
    width:100%;
}

/* Register Button */

.btn-register{
    padding:12px 28px;
    background:linear-gradient(135deg,#1db954,#0c8ce9);
    color:#fff !important;
    border-radius:40px;
    box-shadow:0 10px 20px rgba(14,140,233,.25);
}

.btn-register::after{
    display:none;
}

.btn-register:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 25px rgba(14,140,233,.35);
    color:#fff !important;
}

/* Responsive */

@media(max-width:991px){

.header .container{
    height:75px;
}

.logo img{
    height:50px;
}

.navbar ul{
    gap:20px;
}

.navbar ul li a{
    font-size:15px;
}

}

@media(max-width:768px){

.header .container{
    flex-direction:column;
    height:auto;
    padding:15px 0;
}

.logo{
    margin-bottom:15px;
}

.navbar ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
}

.btn-register{
    padding:10px 22px;
}

}

.narrow { max-width: 640px; }



/* Disclaimer bar */
.disclaimer-bar {
    background: #fff3cd;
    color: #6b5200;
    font-size: 0.85rem;
    padding: 8px 0;
    text-align: center;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #fff;
    padding: 70px 0;
}
.hero-inner h1 {
    font-size: 2.4rem;
    margin: 0 0 16px;
}
.hero .lead {
    color: #cfd9e3;
    max-width: 640px;
    font-size: 1.1rem;
}
.hero-actions { margin-top: 26px; }
.hero-actions .btn { margin-right: 12px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { border: 1px solid #cfd9e3; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* Sections */
.section { padding: 50px 0; }
.section h2 { font-size: 1.6rem; margin-bottom: 18px; }
.muted { color: var(--muted); }

/* Card grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.15s, transform 0.15s;
}
.info-card:hover { box-shadow: 0 8px 20px rgba(15,42,74,0.08); transform: translateY(-2px); }
.info-card h3 { margin: 0 0 8px; color: var(--navy); }
.info-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.data-table th, .data-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}
.data-table th { background: #eef2f6; color: var(--navy); }

/* Feature list */
.feature-list { padding-left: 20px; }
.feature-list li { margin-bottom: 10px; }

/* Callout */
.callout {
    background: #eaf4ff;
    border-left: 4px solid var(--navy);
    padding: 14px 18px;
    border-radius: 6px;
    margin-top: 24px;
    font-size: 0.95rem;
}

/* Pills */
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.pill {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.9rem;
    color: var(--muted);
}

/* CTA band */
.cta-band {
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 20px;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 6px; margin-top: 20px; }
.contact-form label { font-weight: 600; font-size: 0.9rem; margin-top: 10px; }
.contact-form input, .contact-form textarea {
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}
.contact-form button { margin-top: 18px; align-self: flex-start; }

.alert { padding: 12px 16px; border-radius: 6px; margin-bottom: 16px; }
.alert-success { background: #e6f6ee; color: #146c43; }
.alert-error { background: #fdecea; color: #a12622; }
.alert-error ul { margin: 0; padding-left: 18px; }

/* Footer */
.site-footer {
    background: var(--navy-dark);
    color: #cfd9e3;
    
    padding: 40px 0 20px;
    font-size: 0.9rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.footer-grid h4 { color: #fff; margin: 0 0 10px; }
.footer-grid a, .site-footer a{ display: block; color: #cfd9e3; text-decoration: none; margin-bottom: 6px; }
.footer-grid a:hover,.site-footer a:hover { color: #fff; }
.disclaimer-full {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 30px;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #9aabb9;
}
/*=========================================
        HOME PAGE
=========================================*/

.home-page{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#444;
    overflow-x:hidden;
}

.home-page .container{
    max-width:1200px;
}

/*=========================================
        HERO
=========================================*/

.home-page .hero{

    padding:90px 0;

    background:#f8fafc;
}

.home-page .hero h5{

    color:#198754;

    font-weight:600;

    margin-bottom:15px;
}

.home-page .hero h1{

    font-size:52px;

    font-weight:700;

    color:#0A4D8C;

    line-height:1.2;

    margin-bottom:25px;
}

.home-page .hero p{

    font-size:17px;

    line-height:1.9;

    color:#666;

    margin-bottom:30px;
}

.home-page .hero-img{

    max-width:100%;

    max-height:450px;
}

.home-page .hero .btn{

    padding:12px 35px;

    border-radius:30px;
}

/*=========================================
        ABOUT
=========================================*/

.home-page .about{

    padding:80px 0;
}

.home-page .about h2{

    font-size:38px;

    color:#0A4D8C;

    margin-bottom:25px;
}

.home-page .about p{

    color:#666;

    line-height:1.8;
}

.home-page .about ul{

    padding:0;

    list-style:none;

    margin:30px 0;
}

.home-page .about ul li{

    padding:10px 0;

    color:#444;
}

.home-page .about ul li::before{

    content:"✔";

    color:#198754;

    margin-right:12px;

    font-weight:bold;
}

/*=========================================
        INVESTMENT
=========================================*/

.home-page .investment{

    background:#f8fafc;

    padding:80px 0;
}

.home-page .investment h2{

    color:#0A4D8C;

    font-size:38px;

    margin-bottom:50px;

    text-align:center;
}

.home-page .investment-card{

    border:none;

    border-radius:15px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;

    height:100%;
}

.home-page .investment-card:hover{

    transform:translateY(-8px);
}

.home-page .investment-card .card-body{

    padding:35px;

    text-align:center;
}

.home-page .investment-card h4{

    color:#198754;

    margin-bottom:20px;
}

.home-page .investment-card p{

    color:#666;
}

/*=========================================
        WHY
=========================================*/

.home-page .why{

    padding:80px 0;
}

.home-page .why h2{

    color:#0A4D8C;

    margin-bottom:50px;

    text-align:center;
}

.home-page .why .col-md-3{

    padding:25px;
}

.home-page .why h5{

    color:#198754;

    margin:20px 0 15px;
}

.home-page .why p{

    color:#666;
}

/*=========================================
        CTA
=========================================*/

.home-page .cta{

    padding:70px 0;

    background:#198754;

    color:#fff;

    text-align:center;
}

.home-page .cta h2{

    font-size:40px;

    margin-bottom:20px;
}

.home-page .cta p{

    margin-bottom:30px;
}

.home-page .cta .btn{

    padding:14px 35px;

    border-radius:30px;

    font-weight:600;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width:991px){

.home-page .hero{

text-align:center;

padding:60px 0;

}

.home-page .hero h1{

font-size:38px;

}

.home-page .hero-img{

margin-top:40px;

max-height:350px;

}

.home-page .about{

text-align:center;

}

}

@media (max-width:767px){

.home-page .hero h1{

font-size:30px;

}

.home-page .about h2,

.home-page .investment h2,

.home-page .why h2,

.home-page .cta h2{

font-size:28px;

}

.home-page .investment-card{

margin-bottom:25px;

}

}

/*==================================
Investment Section
==================================*/

.home-page .investment-section{

    padding:90px 0;

    background:#f8fafc;

}

.home-page .section-title{

    text-align:center;

    margin-bottom:60px;

}

.home-page .section-title h2{

    color:#0A4D8C;

    font-size:40px;

    font-weight:700;

    margin-bottom:15px;

}

.home-page .section-title p{

    color:#777;

    max-width:700px;

    margin:auto;

}

.home-page .investment-box{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.home-page .investment-box:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.home-page .investment-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#EAF8F1;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.home-page .investment-icon i{

    font-size:34px;

    color:#198754;

}

.home-page .investment-box h3{

    color:#0A4D8C;

    margin-bottom:20px;

    font-weight:600;

}

.home-page .investment-box p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.home-page .investment-box a{

    text-decoration:none;

    color:#198754;

    font-weight:600;

}

.home-page .investment-box a:hover{

    color:#0A4D8C;

}

/*=========================================
Why Choose Us
=========================================*/

.home-page .why-section{

    padding:90px 0;

    background:#ffffff;

}

.home-page .feature-box{

    background:#fff;

    border:1px solid #e9ecef;

    border-radius:15px;

    padding:35px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.home-page .feature-box:hover{

    transform:translateY(-8px);

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    border-color:#198754;

}

.home-page .feature-icon{

    width:75px;

    height:75px;

    margin:0 auto 20px;

    background:#e8f5e9;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

}

.home-page .feature-icon i{

    font-size:30px;

    color:#198754;

}

.home-page .feature-box h4{

    color:#0A4D8C;

    font-size:22px;

    margin-bottom:15px;

}

.home-page .feature-box p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;

}

/*=========================================
How It Works
=========================================*/

.home-page .how-it-works{

    padding:90px 0;

    background:#f8fafc;

}

.home-page .step-box{

    background:#fff;

    border-radius:15px;

    padding:35px 25px;

    text-align:center;

    position:relative;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:.3s;

    height:100%;

}

.home-page .step-box:hover{

    transform:translateY(-8px);

}

.home-page .step-number{

    position:absolute;

    top:20px;

    right:20px;

    font-size:34px;

    color:#e9ecef;

    font-weight:700;

}

.home-page .step-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#198754;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.home-page .step-icon i{

    font-size:34px;

}

.home-page .step-box h4{

    color:#0A4D8C;

    margin-bottom:15px;

}

.home-page .step-box p{

    color:#666;

    line-height:1.8;

}

/*==============================
        CONTENT PAGE
==============================*/

.content-page{
    background:#f5f8fc;
    font-family:'Poppins',sans-serif;
    color:#444;
}

/* Container */

.content-page .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Banner */

.content-page .page-banner{

    background:linear-gradient(135deg,#0A4D8C,#19A84A);

    color:#fff;

    padding:80px 0;

    text-align:center;
}

.content-page .page-banner h1{

    font-size:42px;

    font-weight:700;

    margin-bottom:10px;
}

.content-page .page-banner p{
	color:#fff;
    font-size:17px;

    opacity:.9;
}

/* Content */

.content-page .page-content{

    padding:70px 0;
}

.content-page .content-box{

    background:#fff;

    padding:50px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Headings */

.content-page h2{

    color:#0A4D8C;

    font-size:30px;

    margin:40px 0 20px;

    position:relative;
}

.content-page h2:first-child{

    margin-top:0;
}

.content-page h2::after{

    content:'';

    width:70px;

    height:4px;

    background:#19A84A;

    display:block;

    margin-top:10px;

    border-radius:5px;
}

/* Paragraph */

.content-page p{

    font-size:16px;

    line-height:1.9;

    color:#666;

    margin-bottom:20px;
}

/* List */

.content-page ul{

    margin:25px 0;

    padding-left:25px;
}

.content-page ul li{

    margin-bottom:15px;

    color:#555;

    line-height:1.8;
}

.content-page ul li::marker{

    color:#19A84A;
}

/* Ordered List */

.content-page ol{

    padding-left:25px;

    margin:20px 0;
}

.content-page ol li{

    margin-bottom:12px;
}

/* Blockquote */

.content-page blockquote{

    background:#f0f8ff;

    border-left:5px solid #19A84A;

    padding:25px;

    margin:35px 0;

    font-size:18px;

    color:#0A4D8C;

    font-style:italic;

    border-radius:10px;
}

/* Tables */

.content-page table{

    width:100%;

    border-collapse:collapse;

    margin:30px 0;
}

.content-page table th{

    background:#0A4D8C;

    color:#fff;

    padding:15px;

    text-align:left;
}

.content-page table td{

    border:1px solid #ddd;

    padding:15px;
}

.content-page table tr:nth-child(even){

    background:#f8f8f8;
}

/* Links */

.content-page a{

    color:#0A4D8C;

    text-decoration:none;

    transition:.3s;
}

.content-page a:hover{

    color:#19A84A;
}

/* Image */

.content-page img{

    max-width:100%;

    border-radius:10px;

    margin:20px 0;
}

/* Responsive */

@media(max-width:768px){

.content-page .page-banner{

padding:60px 20px;

}

.content-page .page-banner h1{

font-size:30px;

}

.content-page .content-box{

padding:30px 25px;

}

.content-page h2{

font-size:24px;

}

.content-page p{

font-size:15px;

}

}
/* ===========================
   Investment Page
=========================== */

.investment-page{
    background:#f8fafc;
    font-family:'Poppins',sans-serif;
    color:#333;
    line-height:1.7;
}

.investment-page .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.investment-page section{
    padding:80px 0;
}

/* ===========================
   Hero Section
=========================== */

.investment-page .hero{
    background:linear-gradient(135deg,#0A4D8C,#17A34A);
    color:#fff;
    text-align:center;
    padding:120px 0;
}

.investment-page .hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.investment-page .hero p{
    max-width:700px;
    margin:0 auto 30px;
    font-size:18px;
}

.investment-page .btn{
    display:inline-block;
    padding:15px 35px;
    background:#fff;
    color:#0A4D8C;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.investment-page .btn:hover{
    background:#17A34A;
    color:#fff;
}

/* ===========================
   Common Heading
=========================== */

.investment-page .section-title{
    text-align:center;
    font-size:36px;
    margin-bottom:60px;
    color:#0A4D8C;
}

/* ===========================
   Investment Cards
=========================== */

.investment-page .cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.investment-page .card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.investment-page .card:hover{
    transform:translateY(-8px);
}

.investment-page .card i{
    font-size:48px;
    color:#17A34A;
    margin-bottom:20px;
}

.investment-page .card h3{
    margin-bottom:15px;
}

/* ===========================
   Pricing
=========================== */

.investment-page .packages{
    background:#eef6ff;
}

.investment-page .pricing{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.investment-page .price-card{
    width:340px;
    background:#fff;
    border-radius:20px;
    padding:40px;
    text-align:center;
    position:relative;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.investment-page .price-card.featured{
    border:3px solid #17A34A;
}

.investment-page .popular{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#17A34A;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
}

.investment-page .price-card h1{
    color:#17A34A;
    font-size:58px;
}

.investment-page .price-card ul{
    list-style:none;
    margin:30px 0;
}

.investment-page .price-card li{
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.investment-page .plan-btn{
    display:inline-block;
    padding:12px 30px;
    background:#0A4D8C;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
}

/* ===========================
   Steps
=========================== */

.investment-page .step-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.investment-page .step-grid div{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
}

.investment-page .step-grid span{
    width:70px;
    height:70px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#17A34A;
    color:#fff;
    font-size:28px;
    margin-bottom:20px;
}

/* ===========================
   Why Choose Us
=========================== */

.investment-page .why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.investment-page .why-grid div{
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.investment-page .why-grid i{
    font-size:45px;
    color:#17A34A;
    margin-bottom:20px;
}

/* ===========================
   CTA
=========================== */

.investment-page .cta{
    background:linear-gradient(135deg,#17A34A,#0A4D8C);
    color:#fff;
    text-align:center;
}

.investment-page .cta h2{
    font-size:40px;
    margin-bottom:20px;
}

.investment-page .cta p{
    margin-bottom:30px;
}

/* ===========================
   Responsive
=========================== */

@media(max-width:768px){

    .investment-page section{
        padding:60px 0;
    }

    .investment-page .hero{
        padding:80px 20px;
    }

    .investment-page .hero h1{
        font-size:34px;
    }

    .investment-page .section-title{
        font-size:28px;
    }

    .investment-page .price-card{
        width:100%;
    }

}

/*=================================
LOGIN PAGE
=================================*/

.login-page{

    background:#f5f8fc;

    min-height:100vh;
	

}

.login-card{
max-width:600px;
    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.login-logo{

    width:80px;

    margin-bottom:20px;

}

.login-card h2{

    color:#0A4D8C;

    font-weight:700;

}

.login-card p{

    color:#777;

}

.login-card .form-label{

    font-weight:600;

    color:#0A4D8C;

}

.login-card .form-control{

    height:50px;

    border-radius:10px;

}

.login-card .form-control:focus{

    border-color:#198754;

    box-shadow:0 0 0 .2rem rgba(25,135,84,.15);

}

.login-card .input-group .btn{

    border-radius:0 10px 10px 0;

}

.login-card .btn-success{

    padding:12px;

    border-radius:30px;

    font-size:18px;

}

.login-card a{

    text-decoration:none;

    color:#198754;

    font-weight:600;

}

.login-card a:hover{

    color:#0A4D8C;

}

@media(max-width:768px){

    .login-card{

        padding:30px 25px;

    }

}

/*====================================
Forgot Password Page
====================================*/

.forgot-page{

    background:#f5f8fc;

    min-height:100vh;

}

.forgot-card{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.forgot-logo{

    width:80px;

    margin-bottom:20px;

}

.forgot-card h2{

    color:#0A4D8C;

    font-weight:700;

    margin-bottom:10px;

}

.forgot-card p{

    color:#666;

    line-height:1.7;

}

.forgot-card .form-label{

    font-weight:600;

    color:#0A4D8C;

}

.forgot-card .form-control{

    height:50px;

    border-radius:10px;

    border:1px solid #ced4da;

}

.forgot-card .form-control:focus{

    border-color:#198754;

    box-shadow:0 0 0 .2rem rgba(25,135,84,.15);

}

.forgot-card .btn-success{

    border-radius:30px;

    padding:12px;

    font-size:18px;

    font-weight:600;

}

.forgot-card a{

    color:#198754;

    text-decoration:none;

    font-weight:600;

}

.forgot-card a:hover{

    color:#0A4D8C;

}

@media(max-width:768px){

    .forgot-card{

        padding:30px 25px;

    }

}