﻿body {
    margin: 0;
    padding: 0;
    background-image: url('../../img/taller.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
}

h1 {
    text-align: center;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

h3 {
    text-align: right;
    color: #888;
    font-size: 12px;
    margin-top: 15px;
}

.Login-box {
    width: 400px;
    height: 620px;
    color: white;
    background: rgb(255, 255, 255);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 70px 30px;
    top: 50%;
    left: 50%;
    opacity: 0.85;
}

.avatar img {
    width: 350px;
    height: 250px;
    border-radius: 50%;
    margin-bottom: 20px;
    /*border: 3px solid #6a11cb;*/
}

.Login-box h1 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #333;
}

.registration-form{
    padding:50px 0;
}

.registration-form .form-control.item {
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    transition: 0.3s;
}

    .registration-form .form-control.item:focus {
        border-color: #6a11cb;
        box-shadow: 0 0 5px rgb(255, 0, 0);
        outline: none;
    }

.registration-form .create-account {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    background: rgb(255, 0, 0);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

    .registration-form .create-account:hover {
        background: #0026ff;
    }

@media (max-width: 576px) {
    .Login-box {
        width: 90%;
        padding: 30px 20px;
    }

    .avatar img {
        width: 100px;
        height: 100px;
    }
}

.navbar {
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
  /**  position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;*/
}
.navbar-red {
    background-color: #B00020 ;
}

    .navbar-red .nav-link {
        color: #ffffff ;
    }

        .navbar-red .nav-link:hover {
            color: red;
        }




        /*estilo pagina de inicio*/
.inicio-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    width: 420px;
    margin: 80px auto;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}

/* Logo */
.logo {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Título */
.titulo {
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Subtítulo */
.subtitulo {
    color: #777;
    margin-bottom: 20px;
}

/* Contenedor de productos */
.productos {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Imágenes de productos */
.producto-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
    transition: 0.3s;
}

    /* Hover */
    .producto-img:hover {
        transform: scale(1.1);
    }
