@import url('https://fonts.cdnfonts.com/css/sergio-trendy');
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap");

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}


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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #5e5858;
    background-image: url("../imagenes/5_asfasw112.jpg"); /* Ajusta la ruta según la estructura del proyecto */
    background-size: cover;
}


.navbar {
    background-color: #000000;
    padding: 5px 0;
}

.container {
    max-width: 100%;
    padding: 0 20px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-items {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 10;
    align-items: center;
}

.menu-items li {
    margin-right: 20px;
    position: relative;
}

.menu-items a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu-items a:hover {
    color: #e28dd7;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content li {
    margin: 0;
}

.dropdown-content a {
    padding: 12px 16px;
    display: block;
}

.right-container {
    display: flex;
    align-items: center;
}

.search-bar {
    margin-right: 20px;
}

.search-bar input {
    width: 200px;
    padding: 8px;
    border: none;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.login-register a {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    background-color: #b2297d;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.login-register a:hover {
    background-color: #c770b8;
}

.logo {
    flex-shrink: 0;
    padding-right: 30px; /* Espacio entre el logo y el menú */
}

.logo img {
    height: 35px;
    width: auto;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%; /* Asegura que el body y html ocupen todo el alto de la pantalla */
    margin: 0;
    padding: 0;
}



/* Estilos para el footer */
.footer {
    background-color: #000000;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 10px 0;
    width: 100%;
    font-size: 0.8rem;
    position: relative; /* Cambiado para evitar conflictos con 'absolute' */
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-left {
    margin-right: 20px;
}

.footer-right {
    display: flex;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    filter: invert(1);
    transition: filter 0.3s ease;
}

.social-icon:hover {
    filter: invert(0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        margin-bottom: 10px;
    }

    .social-icon {
        margin-left: 5px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .menu-items {
        flex-direction: column;
        width: 100%;
    }

    .menu-items li {
        margin: 10px 0;
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .right-container {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
    }

    .search-bar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px; /* Margen entre el search y el login */
    }

    .search-bar input {
        width: 100%;
        padding: 12px; /* Aumenta el padding para mejorar el aspecto */
    }

    .login-register {
        width: 100%; /* Hacer que el botón ocupe todo el ancho */
        text-align: center; /* Centrar el botón */
    }

    .login-register a {
        display: block;
        width: 100%;
        padding: 12px;
    }

    .logo {
        align-self: center;
        padding-right: 0; /* Ajuste en pantallas pequeñas */
    }
}

#registerForm {
    display: none;
    max-height: 500px; /* Ajusta la altura máxima según necesites */
    overflow-y: auto; /* Agrega scroll vertical cuando el contenido sea grande */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#loginForm {
    
    max-height: 500px; /* Ajusta la altura máxima según necesites */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.hero {
    position: relative;
    width: 100%;
    height: 85vh; /* Ocupa el 80% del alto de la pantalla */
    background-image: url("../imagenes/brush-makeup-make-up-brushes.jpg"); /* Ajusta la ruta según la estructura del proyecto */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    position: absolute;
    text-align: center;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente para que el texto sea legible */
    padding: 20px 40px;
    border-radius: 10px;
    font-family: 'Sergio Trendy', sans-serif;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

h1 {

    text-align: center;
    color: #ffffff;
   
    font-family: 'Sergio Trendy', sans-serif;
}

h6 {
    font-size: 25px;
    font-family: 'Sergio Trendy', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 24px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }
}

.password-container {
    position: relative;
  
}

#newPassword {
    padding-right: 30px; /* Para dejar espacio para el icono */
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

@media (max-width: 768px) {
  .main__content {
    flex-direction: column;
    align-items: center;
  }

  .section-form,
  .right-column {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .input-busqueda,
  .form__input,
  .form__input2,
  .form__input4 {
    width: 100% !important;
  }
}