/* Reset básico de estilos */
body, h1, h2, p {
  margin: 0;
  padding: 0;
  
}

/* Estilos generales */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  
}

/* Header Styles */
header {
  background-color: #173A7B;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-bottom: 5px;
  border-bottom: 5px solid red;
}

/* Main Styles */
main {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

/* Section Styles */
.creditos {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px;
  text-align: center;
  max-width: 20%; /* Nuevo estilo para limitar el ancho de las secciones */
}

/* Heading Styles */
h2 {
  color: #173A7B;
  margin-bottom: 10px;
}

/* Image Styles */
img {
  max-width: 100%;
  border-radius: 5px;
}

/* Logo Styles */
.logo {
  max-width: 200px;
}

/* Container Styles */
.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/* Login Button Styles */
.login {
  width: 200px;
  height: 40px;
  font-size: 15px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  justify-content: center;
}

/* Progress Styles */
.progress {
  background-color: green;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Dropdown Content Styles */
#dropdown-content {
  display: none;
}

/* Matricula and Contraseña Styles */
.matricula,
.contraseña {
  display: flex;
  flex-flow: row wrap;
  padding-bottom: 10px;
}

/* Label Styles */
.label-matricula,
.label-contraseña {
  padding-right: 20px;
}

/* Container Inicio Styles */
.container-inicio {
  display: flex;
  flex-flow: column wrap;
}

/* Boton Styles */
.letraboton {
  font-family: 'Montserrat', sans-serif;
}

/* Estilo para centrar los elementos */
.centered-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 20vh; 
}

/* Aplica la clase a los elementos en el HTML */
#nombre-alumno,
#total-creditos,
#estatus {
  margin-bottom: 20px; /* Agrega un espacio entre los elementos */
}


