

:root {
    --primary-: #E50914;
    --secundary-: #B3B3B3;
    --primary-red: #E50914;
    --text-white: #FFFFFF;
    --text-gray: #e5e5e5dd;
}


body{
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
       font-family: 'Montserrat', sans-serif;
}
.hero{
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-sub{
    border: solid 1px rgba(146, 146, 146, 0.299);
    width: 600px;
    height: auto;
    margin: 20px 30px;
    display: flex;
    align-items: center;
    flex-direction: column;

justify-content: center;
border-radius: 18px;
}
h1{
    color: white;
    padding: 20px;
       font-weight: 800;
}
input{
       width:74%;
      
       background-color: var(--fundo-input);
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    padding: 18px;
    border: 1px solid #222;
      color: white;
   font-size: 20px;
}

    
.btn-participar {
    width:80%;
    background-color: var(--vermelho-principal);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    background-color: var(--primary-);
}

.btn-participar:hover {
    transform: scale(1.02);
}
