@font-face {
  font-family: HelveticaNeueLT;
  src: url(./HelveticaNeueLT.ttf);
}
body, html{
    height: 100%;
    width: 100%;
    color: #36465D;
    font-family: HelveticaNeueLT, serif;
    font-size: 18px;
    background-color: white;
    overflow: hidden;
    background-image: url(./backlogin.webp);
    background-repeat: repeat;
    background-size: 360px;
}
.logindiv{
    position: absolute;
    top: 15%;
    right: 40%;
    width: 20%;
    border: 0px;
    border-radius: 24px;
    background-color: rgba(212, 212, 212, 0.651);
    padding: 8px;
    text-align: center;
}
.logindiv label{
    font-size: 36px;
}
.input-wrapper {
    padding: 8px;
    position: relative;
    display: inline-block;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #36465D;
}

.input-wrapper input {
    padding-left: 35px;  /* Espacio para el ícono */
    height: 35px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

.input-wrapper input:focus {
    border-color: #36465D;
}

button {
    width: 100%;
    padding: 8px 16px;
    background-color: #36465D;
    color: white;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}