@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
    --bg-dark: #0b0b0e;
    --card-dark: rgba(20,20,24,0.85);
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --accent: #ffffff;
    --radius: 14px;
    --shadow-strong: 0 25px 60px rgba(0,0,0,.65);
}

/* RESET */
*{
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-main);
    background: radial-gradient(circle at top, #1a1a20, #07070a 60%);
}

/* ===== PAGE ===== */
.page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding: 20px;
}

/* ===== FORM ===== */
.formLogin {
    display: flex;
    flex-direction: column;
    width: 420px;
    padding: 36px;
    gap: 10px;

    /* Background com imagem + overlay */
    background:
      linear-gradient(
        rgba(10,10,14,.85),
        rgba(10,10,14,.85)
      ),
      url('/static/imagens/background_paduashop.jpeg');

    background-size: cover;
    background-position: center;

    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    animation: fadeUp .6s ease forwards;
}

@keyframes fadeUp{
    from{ opacity:0; transform: translateY(20px); }
    to{ opacity:1; transform: translateY(0); }
}

/* ===== LOGO ===== */
.areaLogin img {
    width: 260px;
    margin: 0 auto 25px;
    display: block;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,.4);
}

/* ===== TITLES ===== */
.formLogin h1 {
    margin: 0 0 10px;
    font-weight: 600;
    font-size: 1.9em;
    text-align: center;
    letter-spacing: .4px;
}

.formLogin p {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 25px;
}

/* ===== LABEL ===== */
.formLogin label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

/* ===== INPUT ===== */
.formLogin input {
    padding: 14px;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: #fff;
    outline: none;
    transition: .2s ease;
}

.formLogin input::placeholder{
    color: #9ca3af;
}

.formLogin input:focus {
    border-color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.08);
}

/* ===== LINKS ===== */
.formLogin a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 18px;
    transition: .2s ease;
}

.formLogin a:hover {
    color: #ffffff;
}

/* ===== BUTTON ===== */
.formLogin .btn {
    margin-top: 10px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;

    background: #ffffff;
    color: #000000;

    transition: .2s ease;
}

.formLogin .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(255,255,255,.25);
}

/* ===== RESPONSIVE ===== */
@media(max-width: 480px){
    .formLogin{
        width: 100%;
        padding: 28px;
    }

    .areaLogin img{
        width: 220px;
    }
}