*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    height: 100%;
}

/************************* LOGIN ************************/
#login{
    background: url(loginbg.webp) center / cover no-repeat fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logincont{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/** ADMIN PHOTO **/

.userimage {
    position: relative;
    width: 250px;
    height: 250px;
}

.userimage #frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.userimage #pic {
    position: absolute;
    width: 174px;
    height: 174px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/** USERNAME & PASSWORD **/
.userpass{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

input{
    scale: 140%;
    width: 140%;
    padding: 3px;
    border: 2px solid #6394ae;
    border-radius: 5px;
}

input::placeholder{
    color: #878586;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

button img{
    height: 50px;
    background-color: transparent;
    border: none;
    outline: none;
}

button{
    margin-top: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

/************************* LOGIN ************************/


/************************* HOME ************************/
#home{
    background: url(homebg.jpg) center / cover no-repeat fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main{
    height: 85%;
    width: 80%;
    background-color: #e5faffa8;
    border: 3px solid #6394ae;
    border-radius: 20px;
}

.top {
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.derecha {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.searchcont {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

#adminpic {
    width: 200px;
    height: 200px;
    position: absolute;
    right: -20px; /* ¡se sale a la derecha! */
    top: -100px;
}

.carrd{
    width: 80px;
    height: 30px;
    border: 2px solid #6394ae;
    border-radius: 10px;
    background-color: #e5faffa8;
}

#frutigerdulceias{
    position: absolute;
    margin-top: -140px;
    margin-left: -120px;
    width: 566px;
    height: 378px;
}



/*position:sticky; para la cosa de back y next OKK*/
/************************* HOME ************************/
