html.index {
  background: url("../images/a-forja-capa-bg.webp") no-repeat center;
  background-size: cover;
  backdrop-filter: blur(10px);
}

body.pg_index {
    border: 1px solid gray;
    margin: 15px auto;
    border-radius: 10px;
    padding: 10px;
    max-width: 500px;
}
body.login {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width: 100%;
}

.botoes_filme {
  margin-top: 30px;
  margin-bottom: 30px;
}
.botoes_filme button {
  border: 1px solid #e3e3e3;
  background-color: #009788;
}
.botoes_filme button:last-child {
    background-color: #a5751c;
}

.carousel-item img {
  max-height: 80vh;
}
.carousel-item video {
  z-index: 2;
  position: relative;
  pointer-events: auto;
  max-height: 80vh;
}
.carousel-control-prev,
.carousel-control-next {
  z-index: 3;
}

.video-container {
  position: relative;
}

.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  background-color: transparent;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}


section.block_login {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
}
section.block_login .content_login {
    width: 500px;
    padding: 50px;
    border-radius: 20px;
    background-color: #ffffff;
}
section.block_login .content_login h2 {
    margin-bottom: 40px;
}

/* style.css - ajustes personalizados para o sistema Cine Hope */

body {
    max-width: 400px;
    margin: auto;
    background-color: #f9f9f9;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  h1, h2, h3 {
    color: #2c3e50;
  }
  
  .card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0,0,0,0.03);
  }
  
  .btn {
    font-size: 16px;
    padding: 10px 16px;
    border-radius: 6px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"],
  select {
    font-size: 15px;
  }
  
  .alert-info {
    font-size: 15px;
    line-height: 1.6;
    padding: 12px 16px;
    border-radius: 8px;
  }
  
  label.form-label {
    font-weight: 500;
  }
  
  .form-switch .form-check-input {
    cursor: pointer;
  }
  
  @media (min-width: 500px) {
    body {
      box-shadow: 0 0 12px rgba(0,0,0,0.05);
      border-radius: 10px;
    }
    body.pg_index {
      margin: 100px auto;
      padding: 50px;
      max-width: 800px;
    }
  }
  