body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    height: 100vh;
}
.container {
    flex: 1;
    zoom: 110%;
    margin-top: 50px;
    text-align: center;
    padding: 20px;
    background-color: #efeeee;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    width: 300px;
}

.main-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100vh; /* Ajusta la altura según tus necesidades */
}

.mascota {
    flex: 1; /* Cada parte ocupa un tercio */
    display: flex;
    justify-content: center;
    align-items: center;
}
.mascota img{
    width: 340px;
}
h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.input-wraper {
    position: relative;
    width: 90%;
}
input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}
.input-wrapper input {
    width: 90%;
}
.toggle-password {
    position: absolute;
    margin-left: -35px;
    margin-top: 1px;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
}
button {
    margin-top:20px ;
    width: 100%;
    padding: 10px;
    background: #FFC107;
    color: black;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}
button:hover {
    background: #FFA000;
}


/* BOTÓN HAMBURGUESA */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle div {
    width: 30px;
    height: 4px;
    background-color: black;
    margin: 5px;
    border-radius: 5px;
}

.solo-movil{
    display: none;
}
/* Media Queries para Responsividad */
@media (max-width: 900px) {
    .container {
        margin-top: 370px;
        max-width: 70%;
        align-items: center;
        margin-left: 38px;
    }
    

    .mascota{
        display: none;
    }

    .solo-movil  {
        display: block;
        color: white;
        padding: 10px;
        text-align: center;
        font-size: 18px;
        margin-top: 100px;
        margin-bottom: 20px;

    }
    .xd{

        width: 200px;
        height: 200px;
    }


}