/* 
   Estilos específicos para el formulario de registro/edición de mascotas
   Módulo: Administrador / Registro Mascotas
*/

.form-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    border: none;
    max-width: 900px;
    margin: 0 auto;
}

.form-label {
    font-weight: 600;
    color: #1a5276;
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-group-custom {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    background: #fdfdfd;
}

.input-group-custom:focus-within {
    border-color: #1a5276;
    box-shadow: 0 0 0 4px rgba(26, 82, 118, 0.1);
}

.input-group-text-custom {
    background: transparent;
    border: none;
    color: #1a5276;
    opacity: 0.6;
    padding-left: 15px;
}

.form-control-custom, .form-select-custom {
    border: none !important;
    padding: 12px 15px;
    background: transparent !important;
    box-shadow: none !important;
}

.img-preview-container {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.img-preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary {
    background-color: #1a5276 !important;
    border-color: #1a5276 !important;
}

.btn-primary:hover {
    background-color: #14425e !important;
    border-color: #14425e !important;
}

.btn-action {
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.section-title {
    color: #1a5276;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 30px;
    text-align: center;
}
