@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Grey+Qo&family=Kaushan+Script&family=Permanent+Marker&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
    box-sizing: border-box;
}
body {
    background-image: url(Assets/tela_filmes.jpg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 100% 150%;
    font-family: "Fira Sans";
    height: 98vh;
}
input{
    border-radius: 4px;
    margin-bottom: 10px;
    margin-top: 10px;
    height: 5vh;
    width: 100%;
    font-family: "Fira Sans";
}
h2{
    color: black;
}
.cor_fundo {
    background-color: white;
    width: 90%;
    max-width: 400px;
    padding: 20px;
    border-radius: 5px;
    text-align: left;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    margin-bottom: 20px;
}
@media (max-width: 600px) {
    body {
        background-size: cover; /* Ajusta imagem de fundo */
        background-position: top center;
        height: auto;
        padding: 10px;
    }

    h1, h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    input, select, button {
        font-size: 14px;
        padding: 8px;
        width: 100%;
    }

    .cor_fundo {
        padding: 15px;
        width: 95%;
    }
}
label{
    color: black;
    text-align: left;
    font-family: 'Fira Sans';
    margin-top: 10px;
}
button{
    background-color: red;
    color: white;
    border-radius: 5px;
    border: none;
    box-shadow: 1px 1px 1px 1px black;
    height: 6vh;
    width: 100%;
    cursor: pointer;
    margin-bottom: 20px;
    transition: 0.6s;
    font-family: 'Fira Sans';
}
button:hover{
    background-color: rgb(161, 17, 17);
    transform: scale(1.1);
}
h1{
    color: red;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    text-shadow: 1px 2px black;
    font-size: 3em;
}
form{
    justify-content: center;
    align-items: center;
    text-align: left;
    display: flex;
    flex-direction: column;
}
select {
  padding: 10px 15px;         
  border-radius: 8px;         
  border: 2px solid black;  
  background-color: #f9f9f9;  
  font-size: 16px;             
  color: #333;                 
  appearance: none;            
  cursor: pointer;             
  transition: all 0.3s ease;
  margin-bottom: 10px;
  margin-top: 10px;
  width: 100%;  
}

select:hover {
  border-color: rgb(59, 58, 58);      
  background-color: #fff;      
}

select:focus {
  outline: none;               
  box-shadow: 0 0 5px #434242; 
}
.align{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}