body {
    display: flex;
    align-items: center;
    justify-content: center; /* Centra el contenido horizontalmente */
    min-height: 100vh;
    background-image: url('http://localhost/bitacoradepmodelo/public/imagenes/fabricamodelo.png'); 
    background-size: cover;
    background-position: center;
    margin: 0; /* Asegúrate de que no haya márgenes */
}

.wrapper {
    width: 100%; /* Ajusta el ancho al 100% */
    max-width: 400px; /* Cambié el ancho máximo para un mejor diseño */
    background: rgba(255, 255, 255, 0.8); /* Cambia el color de fondo para hacerlo más visible */
    border: 2px solid rgba(255, 255, 255, .5); /* Contorno más claro */
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #0A0D0F;
    border-radius: 10px; 
    padding: 30px 40px;
}

/* Estilo para el título */
.wrapper h1 {
    font-size: 24px; /* Tamaño de fuente ajustado */
    text-align: center;
    color: black;
}

.input-box {
    position: relative;
    width: 100%;
    height: 60px;
    margin: 30px 0;
}

.input-box input {
    width: 90%;
    height: 50%;
    background: transparent;
    border: 2px solid rgba(13, 23, 23, .2);
    border-radius: 40px;
    font-size: 16px;
    color: #0A0D0F;
    padding: 20px 45px 20px 20px;
}

.input-box i {  
    position: absolute;
    right: 20px;
    top: 50%;   
    transform: translateY(-50%);
    font-size: 20px;
}

.wrapper .btn {
    width: 90%;
    height: 45px;
    background: #42D3DA;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: black;
    font-weight: 600;
}
