*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    transition: all 0.3 ease;
}


body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.cajita_cucho{
    display: flex;
    width: 800px;
    height:500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.caja_izquierda{
    flex: 1;
    background: linear-gradient(135deg, #109278, #0d7a64);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#imagen {
  
    width: 50%;
    height: auto; 
    display: block;
    margin: 0 auto; 
}
.conteme{
    background-image: url(../../img/avatars-HOfZooNtNCaTXubE-JPWhzA-t1080x1080-removebg-preview.png);
}

/* 
.figura_humana {
    position: relative;
    width: 100px;
    height: 150px;
  }
  
  .figura_humana .cabeza {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .figura_humana .tronco {
    width: 12px;
    height: 50px;
    background: white;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .figura_humana .brazo {
    width: 60px;
    height: 10px;
    background: white;
    position: absolute;
    top: 35px;
    left: 50%;
    transform-origin: center;
  }
  
  .figura_humana .brazo.izquierdo {
    transform: translateX(-50%) rotate(45deg);
  }
  
  .figura_humana .brazo.derecho {
    transform: translateX(-50%) rotate(-45deg);
  }
  
  .figura_humana .pierna {
    width: 70px;
    height: 10px;
    background: white;
    position: absolute;
    top: 80px;
    left: 50%;
    transform-origin: center;
  }
  
  .figura_humana .pierna.izquierda {
    transform: translateX(-50%) rotate(30deg);
  }
  
  .figura_humana .pierna.derecha {
    transform: translateX(-50%) rotate(-30deg);
  }
   */


/* .sena_logo{
    position: relative;
    width: 120px;
    height:120px ;
}

.sena_logo::before,
.sena_logo::after {
    content: "";
    position: absolute;
    background: white;
    border-radius: 10px;
}

.sena_logo .cabeza{
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translatex(-50%);
}

.sena_logo .brazo{
    width: 60px;
    height: 10px;
    background: white;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.sena_logo .brazo.derecho {
    transform: translateX(-50%) rotate(-45deg);
}

.sena_logo .pierna{
    width: 70px;
    height: 10px;
    background: white ;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX( -50%) rotate(25deg);
}

.sena_logo .pierna.derecha{
    transform: translateX(-50%) rotate(-25deg);
} */

.caja_derecha{
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo{
    text-align: center;
    margin-bottom: 30px;
}

#texto{
    color: #109278;
    font-weight: bold;
    font-size: 24px;
}

.campos{
    margin-bottom: 20px;
    position: relative;
}

.campos input{
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 50px;
    outline: 0;
    font-size: 14px;
}


.campos input:focus{
    border-color:#109278;
}


.campos i{
    position: absolute;
    width: 20px;
    height: 20px;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
}


.btn_iniciar{
    width: 100%;
    background:#109278 ;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn_iniciar :hover{
    background: #0d7a64;
}

.registro{
    text-align: right;
    margin-top: 10px ;
    font-size: 14px;
}


.registro a {
    color: #ff5a5a;
    text-decoration: none;
}
