/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary-color: #0940c1;
    --primary-glow: rgba(37, 99, 235, 0.4);
    --secondary: #64748b;
    --dark: #0f172a;
    --light: #f8fafc;
    --accent: #f59e0b;
    --white: #ffffff;
    --surface: rgba(255, 255, 255, 0.8);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.5;
    overflow: hidden;
    /* Prevent scrolling for a full-size experience */
}

/* Background Animation */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 100%);
}

.bg-mesh::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, var(--primary-glow) 0%, transparent 50%);
    animation: move-bg 20s infinite linear;
}

@keyframes move-bg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 60px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.1);
}

.login-btn {
    height: auto;
    display: inline-block;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid var(--primary-color) !important;
    color: #fff;
    background: var(--primary-color);
    padding: 10px 26px;
    transition: all .5s ease-in-out;
    text-decoration: none;
}

.login-btn:hover {
    background: transparent;
    color: var(--primary-color);
}


.theme-btn-white {
    height: auto;
    display: inline-block;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid #fff;
    color: var(--primary-color);
    background: #fff;
    padding: 10px 26px;
    transition: all .5s ease-in-out;
    text-decoration: none;
}

.theme-btn-white:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* Hero Section */



/* Responsiveness */
@media (max-width: 1024px) {
    .welcome-text {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .welcome-text {
        font-size: 3rem;
    }

    .navbar {
        height: 70px;
    }

    .logo img {
        height: 28px;
    }

    .login-btn {
        padding: 0.6rem 1.4rem;
        font-size: 0.85rem;
    }

    body {
        overflow: auto;
    }

    /* Allow scrolling on smaller devices if content exceeds */
}

@media (max-width: 480px) {
    .welcome-text {
        font-size: 2.5rem;
    }
}


.banner-sec {
    background-image: url('../images/auth.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

.banner-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 64, 193, 0.73);
}

.banner-sec .banner-text {
    font-size: 65px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.banner-box {
    position: relative;
    z-index: 999;
    text-align: center;
}

.text-blue {
    color: var(--primary-color);
}

.logo-main {
text-decoration: none;
}

.logo-main h6 {
    font-size: 23px;
    line-height: 1.2;
    color: #fff;
}


.banner-copyright{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    width: 100%;
    padding: 10px 0;
    z-index: 9999;
    background-color: #fff;
}

.banner-copyright p{
    color: var(--primary-color);
}


.banner-copyright a{
    color: var(--primary-color);
    text-decoration: none;
    transition: all .5s ease-in-out;
}

.banner-copyright a:hover{
    text-decoration: underline;
}