/* style.css - Layout Central do Cliente PlayCine */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000; /* Fundo Totalmente Preto */
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: #0d0d0d; /* Cinza quase preto para o card */
    width: 100%;
    max-width: 380px;
    padding: 40px 25px;
    border-radius: 20px;
    border: 1px solid #1a1a1a;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Detalhe Neon no topo */
.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0055ff);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 1.5px;
}

/* Estilo dos Inputs */
input {
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #00d4ff;
    background-color: #222;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.2);
}

/* Botões */
.btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-azul {
    background: linear-gradient(135deg, #00d4ff 0%, #0077ff 100%);
    color: #000;
}

.btn-azul:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
    filter: brightness(1.1);
}

.btn-pix {
    margin-top: 15px;
    background-color: #28a745;
    color: white