*{
    margin: 0;
    padding: 0;
    font-family: arial;
    color: #fff;
}

.logo{
    align-items: center;
    justify-content: center;
    align-content: center;
    width: 12em; /* Ancho en píxeles */
    height: 8em; /* Altura en píxeles */
}

::-webkit-input-placeholder{
    color: #eee;
}
.wrapper{
    position: relative;
    width: 60em;
    height: 75vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 0.2em solid #ffffff;
    box-shadow: 0 0 1em 0 #ffffff;

    /* Media query for smaller screens (e.g., mobile) */
  @media (max-width: 768px) {
    grid-template-columns: 1fr; /* Adjusts to a single column layout */
  }
}

.form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.title{
    font-size: 1.8em;
}
.inp{
    padding-bottom: 0.5em;
    border-bottom: 0.1em solid #eee;
}
.input{
    border: none;
    outline: none;
    background: none;
    width: 15em;
    margin-top: 0.5em;
    padding-right: 0.5em;
    font-size: 1em;
    color: rgb(255, 255, 255);
    text-align: center;

}
.submit{
    border: none;
    outline: none;
    width: 12em;
    margin-top: 1em;
    padding: 0.4em 0;
    font-size: 1.3em;
    border-radius: 1em;
    letter-spacing: 0em;
    cursor: pointer;
    background: linear-gradient(45deg, rgb(221, 4, 4), #8d0505);
}
.footer{
    margin-top: 0.1em;
    letter-spacing: 0.05em;
    font-size: 1em;
}
.link{
    color: #0ef;
    text-decoration: none;
}
.banner{
    position: absolute;
    top: 0;
    right: 0;
    width: 30em;
    height: 35em;
    background-image: url('../FondoMaquinaria.jpg'); /* Reemplaza con la ruta correcta a tu imagen */
    background-size: cover; /* Ajusta la imagen para cubrir todo el área */
    background-position: center; /* Centra la imagen */
    clip-path: polygon(0 0,100% 0,100% 100%, 40% 100%);
    padding-right: 70px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;

    /* Hide the banner for smaller screens (e.g., mobile) */
    @media (max-width: 768px) {
        display: none;
    }
}
.wel_text{
    font-size: 40px;
    margin-top: -50px;
    line-height: 50px;
}
.para{
    margin-top: 10px;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1px;
}                                         
        
