.btn-fuchsia {

    border-color: grey;
}

.btn-fuchsia:hover {
    background-color: grey;
    border-color: grey;
    color: white;
}

.btn-rojisa {
    border-color: red;
    color: red;
}

.btn-rojisa:hover {
    background-color: red;
    border-color: red;
    color: white;
}

.btn-verde {
    border-color: green;
    color: green;
}

.btn-verde:hover {
    background-color: green;
    border-color: green;
    color: white;
}
.fixed-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    display: block;
    margin: 0 auto;
    background-color: #f8f8f8;
}

.single-products-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 400px; 
}


.products-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}


.login-container {
    max-width: 450px;
    margin: auto;
    padding: 30px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}
.login-container h2 {
    margin-bottom: 20px;
}
.new-customer-content {
    margin-top: 20px;
    text-align: center;
}