﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

    body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 30%, rgba(40, 40, 40, 0.8) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(30, 30, 30, 0.6) 0%, transparent 40%), linear-gradient(135deg, #111 0%, #000 100%);
        z-index: -1;
    }

.connectivity-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none; /* Prevents blocking clicks */
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.7);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

    .container::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient( to bottom right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100% );
        transform: rotate(30deg);
        animation: shine 6s infinite;
        pointer-events: none; /* Prevents blocking clicks */
    }

@keyframes shine {
    0% {
        transform: rotate(30deg) translate(-30%, -30%);
    }

    100% {
        transform: rotate(30deg) translate(30%, 30%);
    }
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-img {
    height: 200px;
    width: auto;
    margin-bottom: 1rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, #fff, #ddd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.3rem;
    color: #bbb;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.login-btn {
    background: linear-gradient(135deg, #222 0%, #111 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 48px;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

    .login-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: 0.5s;
    }

    .login-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
    }

        .login-btn:hover::before {
            left: 100%;
        }

.divider {
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    margin: 2.5rem auto;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }
}
