@import url("style.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #131313;
}

/* =============================
   CONTAINER GERAL
============================= */
.novasenha-container {
    width: 100%;
    min-height: 100vh;
    background: #131313;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* =============================
   CARD / BOX
============================= */
.novasenha-card {
    width: 100%;
    max-width: 460px;
    background: rgba(30, 30, 30, 0.92);
    padding: 40px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

/* Glow dourado */
.novasenha-card::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -20%;
    width: 240px;
    height: 240px;
    background: #bb8031;
    filter: blur(140px);
    opacity: 0.35;
    z-index: -1;
    animation: goldMove 6s infinite alternate ease-in-out;
}

@keyframes goldMove {
    from { transform: translate(0); }
    to { transform: translate(-40px, 40px); }
}

/* =============================
   TITULO E TEXTO
============================= */
.novasenha-card h2 {
    color: white;
    font-size: 30px;
    margin-bottom: 10px;
}

.sub {
    color: #cfcfcf;
    font-size: 15px;
    margin-bottom: 25px;
}

/* =============================
   INPUTS
============================= */
.input {
    width: 100%;
    padding: 14px;
    background: #1e1e1e;
    border: 1px solid #444;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    margin-bottom: 18px;
    transition: 0.3s;
}

.input:focus {
    border-color: #bb8031;
    box-shadow: 0 0 8px #bb8031;
}

/* =============================
   BOTÃO
============================= */
.btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: #bb8031;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    color: #131313;
    transition: 0.3s ease;
    margin-top: 10px;
}

.btn:hover {
    background: #d9a15a;
    transform: scale(1.03);
    box-shadow: 0 0 15px #bb8031;
}

/* =============================
   RESPONSIVO
============================= */
@media (max-width: 600px) {
    .novasenha-card {
        padding: 30px;
    }

    .novasenha-card h2 {
        font-size: 26px;
    }
}
