*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}
.container{
    width: 100%;
    height: 100vh;
    background-color: #C4C4C4;
    font-family: 'Share Tech', sans-serif;
    min-width: 1200px;
    position: relative;
}
.logo{
    font-weight: 600;
    font-size: 3.8rem;
}
nav{
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
ul li{
  background-color: #f8420b;
    display: inline-block;
    list-style: none;
    padding: 6px 20px;
    font-weight: 500;
    font-size: 1.7rem;
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
ul li:hover{
    
    border-radius: 25px;
    text-decoration: none;
}
header{
    position: absolute;
    bottom: 30%;
    padding: 0 50px;
}
header h1{
    font-size: 7rem;
}
header h2{
    font-size: 4rem;
}
.container .emp{
    position: absolute;
    height: 600px;
    width: 550px;
    right: 7%;
    bottom: 0;
    z-index: 999;
}

/*  CSS de Cargar.php  */
.fondo {
    max-width: 100%;
      height: auto;     
}
.cuerpo{
    font-family: 'Arial', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .form-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .form-group {
    margin-bottom: 20px;
  }

  label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
  }

  select, input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }

  button {
    background-color: #f8420b;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    
  }

  button:hover {
    background-color: #f8420b;
  }
  
  
  

  

  