* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    position: absolute;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(./bg.jpeg);
}

/*Retangulo*/
.container {
    width: 500px;
    background-color: #36393f;
    color: #fff;
    padding: 30px;
    border-radius: 7px; 
    margin-right: 10px;
    text-align: center;
    margin-top: 20px;
}

/*Centralizador do formulário do retângulo*/
.form {
    display: flex;
    flex-direction: column;    
}

/*Textos h2 do retângulo*/
h2 {
    margin-bottom: 5px;
    margin-top: 10px;
}

/*Textos p do retângulo*/
p {
    margin-bottom: 15px;
    color: rgb(182, 182, 182);
    font-size: .95rem;
}

/*Formulário do Input (Número do Cartão)*/
.form input {
    height: 40px;
    border-radius: 3px;
    background-color: #313339;
    outline: none;
    border: 1px solid rgb(35,35,35);
    color: #fff;
    font-size: 1.1rem;
    padding: 0 10px;
    margin-bottom: 3px;
    margin-top: 15px;
}

/*Formulário do Botão (Validar)*/
.form button {
    height: 40px;
    border-radius: 3px;
    border: none;
    background-color: #6275bb;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 3px;
    margin-top: 5px;
    cursor: pointer;
}
  
/*Result (Validade do Cartão)*/
.form p {
    height: 40px;
    color: #fff;
    font-size: 1.2rem;
    margin-top: 25px;
    align-content: center ;
    text-align: center      
}
