/* ======== GLOBAL ======== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", Arial, sans-serif;
    background: radial-gradient(circle at top, #0a0f1f, #000000 80%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e6ff;
    overflow: hidden;
}

/* EFEITO DE LINHAS FUTURISTAS */
body::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(90deg,
            rgba(0, 150, 255, 0.05) 0px,
            rgba(0, 150, 255, 0.05) 1px,
            transparent 1px,
            transparent 80px);
    animation: scan 12s linear infinite;
}

@keyframes scan {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200px);
    }
}

/* ======== CONTAINER ======== */
.login-container {
    background: rgba(0, 10, 30, 0.65);
    padding: 40px;
    border-radius: 18px;
    width: 350px;
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.2), inset 0 0 15px rgba(0, 50, 100, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.2);
    position: relative;
    z-index: 2;
}

/* BRILHO SUPERIOR */
.login-container::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00aaff, transparent);
}

/* ======== TITULOS ======== */
.login-container h2 {
    margin-bottom: 5px;
    color: #cfe9ff;
    text-shadow: 0 0 10px rgba(0, 150, 255, 0.4);
}

.login-container p {
    font-size: 14px;
    margin-bottom: 25px;
    color: #8fa7c6;
}

/* ======== INPUTS ======== */
.login-container input[type="text"],
.login-container input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid rgba(0, 150, 255, 0.25);
    background: rgba(15, 30, 50, 0.6);
    color: #e8f1ff;
    outline: none;
    transition: 0.2s;
}

.login-container input:focus {
    border-color: #00aaff;
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.4);
}

.login-container input::placeholder {
    color: #6a7fa1;
}

/* ======== BOTÃO PRINCIPAL ======== */
.login-container button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(90deg, #0066cc, #0099ff);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.25s;
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.3);
}

.login-container button:hover {
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.6);
    transform: translateY(-1px);
}

/* ======== BOTÃO GOOGLE ======== */
.google-button {
    background: rgba(0, 10, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #a0b8d8;
}

.google-button:hover {
    background: rgba(150, 150, 150, 0.1);
}

/* ======== DIVISOR ======== */
.divider {
    margin: 20px 0;
    border-bottom: 1px solid rgba(0, 150, 255, 0.25);
    position: relative;
}

.divider::after {
    content: "OU";
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    background: #001020;
    padding: 0 10px;
    color: #7fa8d8;
    font-size: 13px;
}

/* ======== LINKS ======== */
a {
    color: #58b7ff;
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    text-shadow: 0 0 8px rgba(0, 150, 255, 0.6);
}

/* ======== ICON ======== */
.icon {
    font-size: 48px;
    margin-bottom: 10px;
    color: #0099ff;
    text-shadow: 0 0 20px rgba(0, 150, 255, 0.5);
}