body{
    background-color: #f4f4f4;
}

.navbar {
    position: sticky;
    top: 0;
    background: #49CCD4;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

.search-container {
    position: relative;
    max-width: 400px;

}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid transparent;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.search-input:focus {
    border-color: #090d1e;
    background: white;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
    transform: translateY(-1px);
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 1.1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.search-input:focus + .search-icon {
    color: #090d1e;
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: #aca7a7;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.search-btn:active {
    transform: translateY(-50%) scale(0.98);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem;
    }

    .logo {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .search-container {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
        text-align: center;
    }
    
    .search-input {
        font-size: 0.9rem;
        padding: 0.7rem 1rem 0.7rem 2.8rem;
    }
    
    .search-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Animación de entrada */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    animation: fadeInDown 0.6s ease forwards;
}

.hero-image {
  background-image: url("/image/home_canellapet.jpg");
  background-color: #cccccc;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.border-radius-20 {
    border-radius: 20px;
}

.btn-canella-yellow {
    border-radius: 20px !important;
    background-color: #f9c21d;
    border-color: #d8a302;
    color: #000000;
    padding: 1rem;
    font-size: large;
}


        .container-register {
            background: linear-gradient(135deg, #0099a9 0%, #006b77 25%, #83c5be 75%, #e9ecef 100%);
            min-height: 100vh;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        .form-container {
            max-width: 700px;
            margin: 2rem auto;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 153, 169, 0.3);
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .border-radius-20 {
            border-radius: 20px !important;
            border: 2px solid rgba(0, 153, 169, 0.2);
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: #0099a9;
            box-shadow: 0 0 0 0.2rem rgba(0, 153, 169, 0.25);
        }
        
        .form-floating label {
            color: #a0a0a0;
            font-weight: 300;
        }
        
        .form-control::placeholder,
        .form-select option:first-child {
            color: #000000 !important;
            opacity: 0.8;
        }
        
        .form-control::-webkit-input-placeholder {
            color: #000000;
        }
        
        .form-control::-moz-placeholder {
            color: #000000;
        }
        
        .form-control:-ms-input-placeholder {
            color: #000000;
        }

                .cta-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

          .gradient-bg {
            background: linear-gradient(135deg, #8BC34A 0%, #4CAF50 50%, #009688 100%);
            min-height: 100vh;
        }
        
        .card-custom {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: none;
        }
        
        .left-section {
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }
        
        .pet-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 8px solid rgba(255,255,255,0.3);
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .right-section {
            padding: 2rem 1.5rem;
            background: white;
        }
        
        .brand-title {
            color: #6c5ce7;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .subtitle {
            color: #74b9ff;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2rem;
        }
        
        .main-title {
            color: #2d3436;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .description {
            color: #636e72;
            font-size: 1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: #2d3436;
        }
        
        .feature-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #6c5ce7, #74b9ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: white;
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        
        .register-btn {
            background: #f4f4f4;
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            color: black;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .cancel-btn {
            background: #f4f4f4;
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            color: rgb(247, 81, 81);
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .register-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(108, 92, 231, 0.3);
            color: rgb(0, 0, 0);
        }
        
        .pet-info {
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 1.5rem;
            margin-top: 2rem;
            backdrop-filter: blur(10px);
        }
        
        .pet-name {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .pet-details {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 0.3rem;
        }
        
        .pet-id {
            font-size: 1.1rem;
            font-weight: 700;
            margin-top: 1rem;
        }
        
        @media (max-width: 768px) {
            .left-section {
                min-height: 400px;
                padding: 2rem 1.5rem;
            }
            
            
            .pet-image {
                width: 150px;
                height: 150px;
                margin-bottom: 1.5rem;
            }
            
            .brand-title {
                font-size: 2rem;
            }
            
            .main-title {
                font-size: 1.8rem;
            }
        }

            .back-arrow {
            /* position: absolute;
            top: 20px;
            left: 20px; */
            border: 2px solid #667eea;
            border-radius: 50%;
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 0.5rem;
            margin-left: 0.5rem;
            z-index: 10;
        }

.section-img-index-0 {
    width: 100%;
    height: 600px;
    background-image: url('../image/1_4_pc.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-img-index-1 {
    width: 100%;
    height: 600px;
    background-image: url('../image/1_4_mobile.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-img-index-2 {
    width: 100%;
    height: 600px;
    background-image: url('../image/1_3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
