/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Estilo do corpo */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
    padding: 20px;
}

/* Card de Assinatura */
.subscription-card {
    background-color: #fff;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Título */
.subscription-card h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Labels e inputs */
.subscription-card label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-top: 15px;
    text-align: left;
}

.subscription-card input,
.subscription-card select {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background-color: #fafafa;
}

.subscription-card input:focus,
.subscription-card select:focus {
    border-color: #ffd700;
    outline: none;
}

/* Botão de prosseguir */
.subscription-card button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background-color: #ffd700;
    border: none;
    border-radius: 20px;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscription-card button:hover {
    background-color: #ffa500;
    color: #fff;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .subscription-card {
        max-width: 90%;
        padding: 20px;
    }

    .subscription-card h1 {
        font-size: 20px;
    }

    .subscription-card button {
        padding: 10px;
        font-size: 16px;
    }
}
