* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    background: linear-gradient(135deg, #f5f7fb, #eef4ff);
}

body::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.18), transparent 70%);
    top: -200px;
    left: -120px;
}

body::after {
    content: '';
    position: absolute;
    background: radial-gradient(circle, rgba(6,182,212,0.16), transparent 70%);
    bottom: -180px;
    right: -120px;
}
body::before, body::after, .container::before {
    pointer-events: none;
}

#messageBox, #loginMessageBox{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: capitalize;
    padding: 5px 15px;
    border: 1px solid #ccc;
    background: #fff;
    font-weight: 600;
    color: #000;
    border-radius: 10px;
    width: 100%;
    margin: 15px auto;
    transition: all ease 0.2s;
    font-size: 15px;
    word-wrap: break-word;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.4s;
    align-items: center;
}
@keyframes fadeUp {
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 549px) {
    header{
        display: flex;
        justify-content: space-between;
        padding: 10px;
        width: 100%;
        align-items: center;
        background: rgba(255,255,255,0.75);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    header .logo{
        display: flex;
        align-items: center;
        font-weight: 600;
        font-size: 1.4rem;
    }
    header .logo span{
        color: #2563eb;
    }
    header .logo .wrapLogo{
        border-radius: 50%;
        border: 1px solid #38bdf8;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 5px;
    }
    header .logo .wrapLogo img{
        border-radius: 50%;
        width: 100%;
    }
    header a{
        text-decoration: none;
        font-weight: 600;
        font-size: 1.2rem;
        color: #38bdf8;
        display: flex;
        align-items: center;
        gap: 5px;
        justify-content: center;
    }
    .wrapper{
        height: 100vh;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    .container{
        background: rgba(255,255,255,0.8);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.6);
        border-radius: 20px;
        padding: 15px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.08);
        position: relative;
        overflow: hidden;
        width: 90%;
    }
    .container::before {
        content: '';
        position: absolute;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 70%);
        top: -80px;
        right: -80px;
    }
    .container .actions{
        text-align: center;
        margin-bottom: 25px;
    }
    .container .actions #registerButton, .container .actions #loginButton{
        width: 120px;
        padding: 8px 15px;
        border-radius: 10px;

        border: none;
        border-radius: 18px;
        background: linear-gradient(135deg, #2563eb, #38bdf8);
        color: white;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s ease;
    }
    .container form .heading{
        text-align: left;
        font-weight: 600;
        font-size: 1.5rem;
        margin-bottom: 4px;
    }
    .container form .small{
        font-size: 0.9rem;
        margin-bottom: 14px;
        opacity: 0.7;
    }
    .container form input{
        width: 100%;
        margin-bottom: 10px;
        padding: 16px 18px;
        border-radius: 16px;
        border: 1px solid rgba(0,0,0,0.08);
        background: rgba(255,255,255,0.95);
        font-size: 1rem;
        transition: 0.3s ease;
        outline: none;
    }
    .container form input:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 5px rgba(37,99,235,0.12);
        outline: none;
    }
    .container form button{
        width: 100%;
        padding: 16px;
        border: none;
        border-radius: 18px;
        background: linear-gradient(135deg, #2563eb, #38bdf8);
        color: white;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s ease;
        box-shadow: 0 15px 30px rgba(37,99,235,0.2);
    }
    .container form .showPass{
        text-align: center;
        margin-bottom: 15px;
        font-weight: 600;
        font-size: 1.1rem;
    }
    .container form .showPassInput{
        width: 15px;
        padding: 10px;

    }
    button:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(37,99,235,0.28);
    }

    /*========MAIN LANDING PAGE*/
    .heroWrap{
        min-height: 90vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        padding: 20px;
        flex-wrap: wrap;
    }
    .heroWrap .hero .badge{
        display: inline-block;
        padding: 10px 18px;
        background: rgba(37,99,235,0.08);
        color: #2563eb;
        border-radius: 999px;
        margin-bottom: 28px;
        font-size: 0.92rem;
        font-weight: 600;
    }
    .heroWrap .hero h1{
        font-size: 2.4rem;
        line-height: 1.05;
        margin-bottom: 25px;
        font-weight: 800;
        word-wrap: break-word;
    }
    .heroWrap .hero p {
        color: #4b5563;
        line-height: 1.9;
        font-size: 1.1rem;
        max-width: 650px;
        margin-bottom: 38px;
    }
    .heroWrap .hero .hero-buttons {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
    }
    .btn{
        padding: 13px 24px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .primary-btn{
        background: linear-gradient(135deg, #2563eb, #38bdf8);
        color: white;
        box-shadow: 0 12px 30px rgba(37,99,235,0.18);
    }
    .primary-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(37,99,235,0.25);
    }
    .secondary-btn {
        border: 1px solid rgba(0,0,0,0.08);
        color: #111827;
        background: white;
    }
    .dashboard-preview img{
        border-radius: 20px;
        width: 100%;
        height: 100%;
    }
    .dashboard-preview img:hover{
        transform: translateY(-2px);
        transition: all ease 0.2s;
        cursor: pointer;
    }

    .features{
        padding: 20px;
    }
    .section-title {
        text-align: center;
        margin-bottom: 70px;
    }

    .section-title h2 {
        font-size: clamp(2.2rem, 5vw, 4rem);
        margin-bottom: 15px;
    }

    .section-title p {
        color: #6b7280;
        max-width: 700px;
        margin: auto;
        line-height: 1.8;
    }
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }

    .feature-card {
        background: white;
        border-radius: 28px;
        padding: 35px 30px;
        border: 1px solid rgba(0,0,0,0.04);
        transition: 0.3s ease;
        box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    }

    .feature-icon {
        width: 62px;
        height: 62px;
        background: linear-gradient(135deg, #2563eb, #38bdf8);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 22px;
    }

    .feature-card p {
        color: #6b7280;
        line-height: 1.7;
    }

    .cta {
        padding: 20px;
    }

    .cta-box {
        background: linear-gradient(145deg, #2563eb, #38bdf8);
        border-radius: 38px;
        padding: 75px 40px;
        text-align: center;
        color: white;
        box-shadow: 0 30px 60px rgba(37,99,235,0.2);
    }

    .cta-box h2 {
        font-size: clamp(2rem, 5vw, 4rem);
        margin-bottom: 18px;
    }

    .cta-box p {
        max-width: 720px;
        margin: auto auto 35px auto;
        line-height: 1.8;
        color: rgba(255,255,255,0.88);
    }

    .white-btn {
        background: white;
        color: #2563eb;
    }

    .white-btn:hover {
        transform: translateY(-3px);
    }

    footer {
        padding: 40px 8%;
        text-align: center;
        color: #6b7280;
        border-top: 1px solid rgba(0,0,0,0.05);
        background: white;
    }

}

@media (min-width: 550px) and (max-width: 758px) {
    header{
        display: flex;
        justify-content: space-between;
        padding: 10px;
        width: 100%;
        align-items: center;
        background: rgba(255,255,255,0.75);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    header .logo{
        display: flex;
        align-items: center;
        font-weight: 600;
        font-size: 1.4rem;
    }
    header .logo span{
        color: #2563eb;
    }
    header .logo .wrapLogo{
        border-radius: 50%;
        border: 1px solid #38bdf8;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 5px;
    }
    header .logo .wrapLogo img{
        border-radius: 50%;
        width: 100%;
    }
    header a{
        text-decoration: none;
        font-weight: 600;
        font-size: 1.2rem;
        color: #38bdf8;
        display: flex;
        align-items: center;
        gap: 5px;
        justify-content: center;
    }
    .wrapper{
        height: 100vh;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    .container{
        background: rgba(255,255,255,0.8);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.6);
        border-radius: 20px;
        padding: 15px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.08);
        position: relative;
        overflow: hidden;
        width: 650px;
        width: 90%;
    }
    .container::before {
        content: '';
        position: absolute;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 70%);
        top: -80px;
        right: -80px;
    }
    .container .actions{
        text-align: center;
        margin-bottom: 25px;
    }
    .container .actions #registerButton, .container .actions #loginButton{
        width: 120px;
        padding: 8px 15px;
        border-radius: 10px;

        border: none;
        border-radius: 18px;
        background: linear-gradient(135deg, #2563eb, #38bdf8);
        color: white;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s ease;
    }
    .container form .heading{
        text-align: left;
        font-weight: 600;
        font-size: 1.5rem;
        margin-bottom: 4px;
    }
    .container form .small{
        font-size: 0.9rem;
        margin-bottom: 14px;
        opacity: 0.7;
    }
    .container form input{
        width: 100%;
        margin-bottom: 10px;
        padding: 16px 18px;
        border-radius: 16px;
        border: 1px solid rgba(0,0,0,0.08);
        background: rgba(255,255,255,0.95);
        font-size: 1rem;
        transition: 0.3s ease;
        outline: none;
    }
    .container form input:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 5px rgba(37,99,235,0.12);
        outline: none;
    }
    .container form button{
        width: 100%;
        padding: 16px;
        border: none;
        border-radius: 18px;
        background: linear-gradient(135deg, #2563eb, #38bdf8);
        color: white;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s ease;
        box-shadow: 0 15px 30px rgba(37,99,235,0.2);
    }
    .container form .showPass{
        text-align: center;
        margin-bottom: 15px;
        font-weight: 600;
        font-size: 1.1rem;
    }
    .container form .showPassInput{
        width: 15px;
        padding: 10px;

    }
    button:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(37,99,235,0.28);
    }

    /*========MAIN LANDING PAGE*/
    .heroWrap{
        min-height: 90vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        padding: 20px;
        flex-wrap: wrap;
    }
    .heroWrap .hero .badge{
        display: inline-block;
        padding: 10px 18px;
        background: rgba(37,99,235,0.08);
        color: #2563eb;
        border-radius: 999px;
        margin-bottom: 28px;
        font-size: 0.92rem;
        font-weight: 600;
    }
    .heroWrap .hero h1{
        font-size: 2.4rem;
        line-height: 1.05;
        margin-bottom: 25px;
        font-weight: 800;
        word-wrap: break-word;
    }
    .heroWrap .hero p {
        color: #4b5563;
        line-height: 1.9;
        font-size: 1.1rem;
        max-width: 650px;
        margin-bottom: 38px;
    }
    .heroWrap .hero .hero-buttons {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
    }
    .btn{
        padding: 13px 24px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .primary-btn{
        background: linear-gradient(135deg, #2563eb, #38bdf8);
        color: white;
        box-shadow: 0 12px 30px rgba(37,99,235,0.18);
    }
    .primary-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(37,99,235,0.25);
    }
    .secondary-btn {
        border: 1px solid rgba(0,0,0,0.08);
        color: #111827;
        background: white;
    }
    .dashboard-preview img{
        border-radius: 20px;
        width: 100%;
        height: 100%;
    }
    .dashboard-preview img:hover{
        transform: translateY(-2px);
        transition: all ease 0.2s;
        cursor: pointer;
    }
    .features{
        padding: 20px;
    }
    .section-title {
        text-align: center;
        margin-bottom: 70px;
    }

    .section-title h2 {
        font-size: clamp(2.2rem, 5vw, 4rem);
        margin-bottom: 15px;
    }

    .section-title p {
        color: #6b7280;
        max-width: 700px;
        margin: auto;
        line-height: 1.8;
    }
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }

    .feature-card {
        background: white;
        border-radius: 28px;
        padding: 35px 30px;
        border: 1px solid rgba(0,0,0,0.04);
        transition: 0.3s ease;
        box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    }

    .feature-icon {
        width: 62px;
        height: 62px;
        background: linear-gradient(135deg, #2563eb, #38bdf8);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 22px;
    }

    .feature-card p {
        color: #6b7280;
        line-height: 1.7;
    }

    .cta {
        padding: 20px;
    }

    .cta-box {
        background: linear-gradient(145deg, #2563eb, #38bdf8);
        border-radius: 38px;
        padding: 75px 40px;
        text-align: center;
        color: white;
        box-shadow: 0 30px 60px rgba(37,99,235,0.2);
    }

    .cta-box h2 {
        font-size: clamp(2rem, 5vw, 4rem);
        margin-bottom: 18px;
    }

    .cta-box p {
        max-width: 720px;
        margin: auto auto 35px auto;
        line-height: 1.8;
        color: rgba(255,255,255,0.88);
    }

    .white-btn {
        background: white;
        color: #2563eb;
    }

    .white-btn:hover {
        transform: translateY(-3px);
    }

    footer {
        padding: 40px 8%;
        text-align: center;
        color: #6b7280;
        border-top: 1px solid rgba(0,0,0,0.05);
        background: white;
    }
}
@media (min-width: 759px) and (max-width: 1100px){
    header{
        display: flex;
        justify-content: space-between;
        padding: 10px;
        width: 100%;
        align-items: center;
        background: rgba(255,255,255,0.75);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    header .logo{
        display: flex;
        align-items: center;
        font-weight: 600;
        font-size: 1.4rem;
    }
    header .logo span{
        color: #2563eb;
    }
    header .logo .wrapLogo{
        border-radius: 50%;
        border: 1px solid #38bdf8;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 5px;
    }
    header .logo .wrapLogo img{
        border-radius: 50%;
        width: 100%;
    }
    header a{
        text-decoration: none;
        font-weight: 600;
        font-size: 1.2rem;
        color: #38bdf8;
        display: flex;
        align-items: center;
        gap: 5px;
        justify-content: center;
    }
    .wrapper{
        height: 100vh;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    .container{
        background: rgba(255,255,255,0.8);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.6);
        border-radius: 20px;
        padding: 15px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.08);
        position: relative;
        overflow: hidden;
        width: 600px;
    }
    .container::before {
        content: '';
        position: absolute;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 70%);
        top: -80px;
        right: -80px;
    }
    .container .actions{
        text-align: center;
        margin-bottom: 25px;
    }
    .container .actions #registerButton, .container .actions #loginButton{
        width: 120px;
        padding: 8px 15px;
        border-radius: 10px;

        border: none;
        border-radius: 18px;
        background: linear-gradient(135deg, #2563eb, #38bdf8);
        color: white;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s ease;
    }
    .container form .heading{
        text-align: left;
        font-weight: 600;
        font-size: 1.5rem;
        margin-bottom: 4px;
    }
    .container form .small{
        font-size: 0.9rem;
        margin-bottom: 14px;
        opacity: 0.7;
    }
    .container form input{
        width: 100%;
        margin-bottom: 10px;
        padding: 16px 18px;
        border-radius: 16px;
        border: 1px solid rgba(0,0,0,0.08);
        background: rgba(255,255,255,0.95);
        font-size: 1rem;
        transition: 0.3s ease;
        outline: none;
    }
    .container form input:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 5px rgba(37,99,235,0.12);
        outline: none;
    }
    .container form button{
        width: 100%;
        padding: 16px;
        border: none;
        border-radius: 18px;
        background: linear-gradient(135deg, #2563eb, #38bdf8);
        color: white;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s ease;
        box-shadow: 0 15px 30px rgba(37,99,235,0.2);
    }
    .container form .showPass{
        text-align: center;
        margin-bottom: 15px;
        font-weight: 600;
        font-size: 1.1rem;
    }
    .container form .showPassInput{
        width: 15px;
        padding: 10px;

    }
    button:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(37,99,235,0.28);
    }

    /*========MAIN LANDING PAGE*/
    .heroWrap{
        min-height: 90vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        padding: 20px;
        flex-wrap: wrap;
    }
    .heroWrap .hero .badge{
        display: inline-block;
        padding: 10px 18px;
        background: rgba(37,99,235,0.08);
        color: #2563eb;
        border-radius: 999px;
        margin-bottom: 28px;
        font-size: 0.92rem;
        font-weight: 600;
    }
    .heroWrap .hero h1{
        font-size: 2.4rem;
        line-height: 1.05;
        margin-bottom: 25px;
        font-weight: 800;
        word-wrap: break-word;
    }
    .heroWrap .hero p {
        color: #4b5563;
        line-height: 1.9;
        font-size: 1.1rem;
        max-width: 650px;
        margin-bottom: 38px;
    }
    .heroWrap .hero .hero-buttons {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
    }
    .btn{
        padding: 13px 24px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .primary-btn{
        background: linear-gradient(135deg, #2563eb, #38bdf8);
        color: white;
        box-shadow: 0 12px 30px rgba(37,99,235,0.18);
    }
    .primary-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(37,99,235,0.25);
    }
    .secondary-btn {
        border: 1px solid rgba(0,0,0,0.08);
        color: #111827;
        background: white;
    }
    .dashboard-preview img{
        border-radius: 20px;
        width: 100%;
        height: 100%;
    }
    .dashboard-preview img:hover{
        transform: translateY(-2px);
        transition: all ease 0.2s;
        cursor: pointer;
    }
    .features{
        padding: 20px;
    }
    .section-title {
        text-align: center;
        margin-bottom: 70px;
    }

    .section-title h2 {
        font-size: clamp(2.2rem, 5vw, 4rem);
        margin-bottom: 15px;
    }

    .section-title p {
        color: #6b7280;
        max-width: 700px;
        margin: auto;
        line-height: 1.8;
    }
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }

    .feature-card {
        background: white;
        border-radius: 28px;
        padding: 35px 30px;
        border: 1px solid rgba(0,0,0,0.04);
        transition: 0.3s ease;
        box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    }

    .feature-icon {
        width: 62px;
        height: 62px;
        background: linear-gradient(135deg, #2563eb, #38bdf8);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 22px;
    }

    .feature-card p {
        color: #6b7280;
        line-height: 1.7;
    }

    .cta {
        padding: 20px;
    }

    .cta-box {
        background: linear-gradient(145deg, #2563eb, #38bdf8);
        border-radius: 38px;
        padding: 75px 40px;
        text-align: center;
        color: white;
        box-shadow: 0 30px 60px rgba(37,99,235,0.2);
    }

    .cta-box h2 {
        font-size: clamp(2rem, 5vw, 4rem);
        margin-bottom: 18px;
    }

    .cta-box p {
        max-width: 720px;
        margin: auto auto 35px auto;
        line-height: 1.8;
        color: rgba(255,255,255,0.88);
    }

    .white-btn {
        background: white;
        color: #2563eb;
    }

    .white-btn:hover {
        transform: translateY(-3px);
    }

    footer {
        padding: 40px 8%;
        text-align: center;
        color: #6b7280;
        border-top: 1px solid rgba(0,0,0,0.05);
        background: white;
    }
}
@media (min-width: 1101px){
    header{
        display: flex;
        justify-content: space-between;
        padding: 10px;
        width: 100%;
        align-items: center;
        background: rgba(255,255,255,0.75);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    header .logo{
        display: flex;
        align-items: center;
        font-weight: 600;
        font-size: 1.4rem;
    }
    header .logo span{
        color: #2563eb;
    }
    header .logo .wrapLogo{
        border-radius: 50%;
        border: 1px solid #38bdf8;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 5px;
    }
    header .logo .wrapLogo img{
        border-radius: 50%;
        width: 100%;
    }
    header a{
        text-decoration: none;
        font-weight: 600;
        font-size: 1.2rem;
        color: #38bdf8;
        display: flex;
        align-items: center;
        gap: 5px;
        justify-content: center;
    }
    .wrapper{
        height: 100vh;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    .container{
        background: rgba(255,255,255,0.8);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.6);
        border-radius: 20px;
        padding: 15px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.08);
        position: relative;
        overflow: hidden;
        width: 600px;
    }
    .container::before {
        content: '';
        position: absolute;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 70%);
        top: -80px;
        right: -80px;
    }
    .container .actions{
        text-align: center;
        margin-bottom: 25px;
    }
    .container .actions #registerButton, .container .actions #loginButton{
        width: 120px;
        padding: 8px 15px;
        border-radius: 10px;

        border: none;
        border-radius: 18px;
        background: linear-gradient(135deg, #2563eb, #38bdf8);
        color: white;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s ease;
    }
    .container form .heading{
        text-align: left;
        font-weight: 600;
        font-size: 1.5rem;
        margin-bottom: 4px;
    }
    .container form .small{
        font-size: 0.9rem;
        margin-bottom: 14px;
        opacity: 0.7;
    }
    .container form input{
        width: 100%;
        margin-bottom: 10px;
        padding: 16px 18px;
        border-radius: 16px;
        border: 1px solid rgba(0,0,0,0.08);
        background: rgba(255,255,255,0.95);
        font-size: 1rem;
        transition: 0.3s ease;
        outline: none;
    }
    .container form input:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 5px rgba(37,99,235,0.12);
        outline: none;
    }
    .container form button{
        width: 100%;
        padding: 16px;
        border: none;
        border-radius: 18px;
        background: linear-gradient(135deg, #2563eb, #38bdf8);
        color: white;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s ease;
        box-shadow: 0 15px 30px rgba(37,99,235,0.2);
    }
    .container form .showPass{
        text-align: center;
        margin-bottom: 15px;
        font-weight: 600;
        font-size: 1.1rem;
    }
    .container form .showPassInput{
        width: 15px;
        padding: 10px;

    }
    button:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(37,99,235,0.28);
    }

    /*========MAIN LANDING PAGE*/
    .heroWrap{
        min-height: 90vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        padding: 20px;
        flex-wrap: wrap;

        display: grid;
        gap: 10px;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    .heroWrap .hero .badge{
        display: inline-block;
        padding: 10px 18px;
        background: rgba(37,99,235,0.08);
        color: #2563eb;
        border-radius: 999px;
        margin-bottom: 28px;
        font-size: 0.92rem;
        font-weight: 600;
    }
    .heroWrap .hero h1{
        font-size: 2.4rem;
        line-height: 1.05;
        margin-bottom: 25px;
        font-weight: 800;
        word-wrap: break-word;
    }
    .heroWrap .hero p {
        color: #4b5563;
        line-height: 1.9;
        font-size: 1.1rem;
        max-width: 650px;
        margin-bottom: 38px;
    }
    .heroWrap .hero .hero-buttons {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
    }
    .btn{
        padding: 13px 24px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .primary-btn{
        background: linear-gradient(135deg, #2563eb, #38bdf8);
        color: white;
        box-shadow: 0 12px 30px rgba(37,99,235,0.18);
    }
    .primary-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(37,99,235,0.25);
    }
    .secondary-btn {
        border: 1px solid rgba(0,0,0,0.08);
        color: #111827;
        background: white;
    }
    .dashboard-preview img{
        border-radius: 20px;
        width: 100%;
        height: 100%;
    }
    .dashboard-preview img:hover{
        transform: translateY(-2px);
        transition: all ease 0.2s;
        cursor: pointer;
    }
    .features{
        padding: 20px;
    }
    .section-title {
        text-align: center;
        margin-bottom: 70px;
    }

    .section-title h2 {
        font-size: clamp(2.2rem, 5vw, 4rem);
        margin-bottom: 15px;
    }

    .section-title p {
        color: #6b7280;
        max-width: 700px;
        margin: auto;
        line-height: 1.8;
    }
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 24px;
    }

    .feature-card {
        background: white;
        border-radius: 28px;
        padding: 35px 30px;
        border: 1px solid rgba(0,0,0,0.04);
        transition: 0.3s ease;
        box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    }

    .feature-icon {
        width: 62px;
        height: 62px;
        background: linear-gradient(135deg, #2563eb, #38bdf8);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 22px;
    }

    .feature-card p {
        color: #6b7280;
        line-height: 1.7;
    }

    .cta {
        padding: 20px;
    }

    .cta-box {
        background: linear-gradient(145deg, #2563eb, #38bdf8);
        border-radius: 38px;
        padding: 75px 40px;
        text-align: center;
        color: white;
        box-shadow: 0 30px 60px rgba(37,99,235,0.2);
    }

    .cta-box h2 {
        font-size: clamp(2rem, 5vw, 4rem);
        margin-bottom: 18px;
    }

    .cta-box p {
        max-width: 720px;
        margin: auto auto 35px auto;
        line-height: 1.8;
        color: rgba(255,255,255,0.88);
    }

    .white-btn {
        background: white;
        color: #2563eb;
    }

    .white-btn:hover {
        transform: translateY(-3px);
    }

    footer {
        padding: 40px 8%;
        text-align: center;
        color: #6b7280;
        border-top: 1px solid rgba(0,0,0,0.05);
        background: white;
    }
}