/* Estilo global */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  text-align: center;
}

a {
  text-decoration: none;
  color: inherit;
}
.master-class {
  text-decoration: underline;
  margin-bottom: 2px;
}

/* Banner full-screen */
.banner {
  background: #007bff; /* Puedes poner la URL de tu banner */
  height: 60vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}
.about-course-con {
  position: relative;
  z-index: 2;
}
.about-course-con .about-course {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
  padding: 15px;
  margin-top: -150px;
}
.title-mov {
  display: none;
}
.banner-content:nth-child(1) {
  display: none;
}
.banner-content:nth-child(1) img {
  max-width: 100%;
  height: 100vh;
  background-size: cover;
}
.banner-content:nth-child(2) {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-right: 15px;
}
.banner-content:nth-child(2) h1 {
  font-size: 40px;

  color: white;
}

.banner-content p {
  font-size: 1.9rem;
  color: white;
}

.title-temario {
  font-size: 20px;
  color: #f9f9f9;
}
.container-form {
  width: 90%;
  margin: 40px auto;
  padding: 20px 25px;
  background-color: #f4f7fc;
  border-radius: 12px;
}
.container-form form {
  width: 100%;
  margin: auto;
  padding: 10px;
}
.container-form form input {
  padding: 12px;
}
.container-form form button {
  width: 100%;
  padding: 14px;
  font-size: 18px;
  background-color: #ccc;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3sease;
  margin-top: 20px;
}
.container-form form button:hover {
  background-color: #007bff;
}
.container-form form label {
  margin: 7px 0px;
}
@media (min-width: 767px) {
  .banner-content:nth-child(1) {
    display: block;
  }
  .banner {
    background: #007bff; /* Puedes poner la URL de tu banner */
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    gap: 20px;
    z-index: 1;
  }
  .about-course-con {
    position: relative;
    z-index: 2;
  }
  .title-temario {
    font-size: 35px;
    color: #f9f9f9;
  }
  .container-form {
    width: 40%;
    margin: 40px auto;
    padding: 20px 25px;
    background-color: #f4f7fc;
  }
}

/* The original Angular template is mounted below the Academy shell in React.
   Keep its two banner columns visible after the host application's reset. */
.academy-exact-page app-master-class .banner-content:nth-of-type(2) h1 {
  display: block !important;
  visibility: visible !important;
}

@media (min-width: 767px) {
  .academy-exact-page app-master-class .banner-content:first-of-type {
    display: block !important;
  }

  .academy-exact-page app-master-class .banner-content:first-of-type img {
    display: block !important;
  }
}
