/* ===========================
   RECOVERY - TNavigator
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

:root {
    --tn-green: #28a745;
    --tn-dark: #0f0f0f;
    --tn-gray: #1c1c1c;
    --tn-light: #f5f5f5;
    --tn-glow: 0 0 12px rgba(40, 167, 69, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #0f0f0f 0%, #181818 60%, #0a0a0a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--tn-light);
    overflow: hidden;
}

/* Container principal */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Box */
.login-box {
    background: rgba(28, 28, 28, 0.95);
    border-radius: 12px;
    padding: 45px 40px;
    width: 360px;
    text-align: center;
    border: 1px solid rgba(40, 167, 69, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
    position: relative;
    animation: fadeIn 0.8s ease;
}

/* Efeito de borda luminosa */
.login-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(40,167,69,0.6), rgba(0,0,0,0.7));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Seta de voltar */
.back-arrow {
    position: absolute;
    top: 18px;
    left: 18px;
    font-size: 22px;
    color: var(--tn-green);
    text-decoration: none;
    transition: 0.2s ease;
    font-weight: 600;
}

.back-arrow:hover {
    color: #34ce57;
    text-shadow: 0 0 8px rgba(40,167,69,0.7);
}

/* Logo */
.logo {
    width: 75px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(40,167,69,0.8));
}

/* Título */
h2 {
    font-weight: 600;
    color: var(--tn-green);
    margin-bottom: 20px;
    text-shadow: var(--tn-glow);
}

/* Texto informativo */
.info-text {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Inputs */
.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-size: 13px;
    color: #b0b0b0;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}

input[type="email"],
input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: none;
    outline: none;
    border-radius: 6px;
    background: #2a2a2a;
    color: var(--tn-light);
    font-size: 15px;
    transition: all 0.3s ease;
}

input:focus {
    box-shadow: var(--tn-glow);
    background: #1e1e1e;
}

/* Botão */
button {
    width: 100%;
    padding: 12px;
    background: var(--tn-green);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

button:hover {
    background: #34ce57;
    box-shadow: 0 0 15px rgba(40, 167, 69, 0.9);
    transform: translateY(-1px);
}

/* Animação suave */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsivo */
@media (max-width: 420px) {
    .login-box {
        width: 90%;
        padding: 40px 25px;
    }
}
